Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mate-netbook
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Jobs
Commits
Open sidebar
Debian and Ubuntu MATE Packaging Team
mate-netbook
Commits
fc8a6ac5
Commit
fc8a6ac5
authored
May 19, 2015
by
Martin Wimpress
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add 0001_preserve_configuration.patch.
parent
707eb81f
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
69 additions
and
0 deletions
+69
-0
debian/changelog
debian/changelog
+9
-0
debian/patches/0001_preserve_configuration.patch
debian/patches/0001_preserve_configuration.patch
+59
-0
debian/patches/series
debian/patches/series
+1
-0
No files found.
debian/changelog
View file @
fc8a6ac5
mate-netbook (1.8.2-2~vivid1) vivid; urgency=medium
* Upload to unstable.
* debian/patches:
+ Add 0002_preserve_configuration.patch. Ensure Window Picker
applet doesn't override mate-maximus. (Closes: #785090).
-- Martin Wimpress <code@flexion.org> Tue, 19 May 2015 01:48:35 +0100
mate-netbook (1.8.2-1) experimental; urgency=medium
* New upstream release.
...
...
debian/patches/0001_preserve_configuration.patch
0 → 100644
View file @
fc8a6ac5
GNU nano 2.2.6 File: ../mate-netbook-181/debian/patches/0002_preserve_configuration.patch
From b84fe12fad7717ddfad5cb3bd12090f61864e759 Mon Sep 17 00:00:00 2001
From: Monsta <monsta@inbox.ru>
Date: Tue, 28 Apr 2015 16:56:54 +0300
Subject: [PATCH] window picker applet: don't mess with maximus settings
---
mate-window-picker-applet/applet.c | 19 -------------------
1 file changed, 19 deletions(-)
diff --git a/mate-window-picker-applet/applet.c b/mate-window-picker-applet/applet.c
index 3985383..3cd9c7a 100644
--- a/mate-window-picker-applet/applet.c
+++ b/mate-window-picker-applet/applet.c
@@ -47,10 +47,6 @@
#define APPLET_SCHEMA "org.mate.panel.applet.mate-window-picker-applet"
#define SHOW_WIN_KEY "show-all-windows"
-#define MAXIMUS_SCHEMA "org.mate.maximus"
-#define UNDECORATE_KEY "undecorate"
-#define NO_MAXIMIZE_KEY "no-maximize"
-
typedef struct
{
GtkWidget *tasks;
@@ -133,13 +129,6 @@
force_no_focus_padding (GtkWidget *widget)
static void
cw_applet_finalize (GObject *object)
{
- /* disable Maximus */
- GSettings *maximus_settings;
- maximus_settings = g_settings_new (MAXIMUS_SCHEMA);
- g_settings_set_boolean (maximus_settings, UNDECORATE_KEY, FALSE);
- g_settings_set_boolean (maximus_settings, NO_MAXIMIZE_KEY, TRUE);
- g_object_unref (maximus_settings);
-
if (G_OBJECT_CLASS (parent_class)->finalize)
(* G_OBJECT_CLASS (parent_class)->finalize) (object);
}
@@ -169,18 +158,10 @@
cw_applet_fill (MatePanelApplet *applet,
mainapp = app;
screen = wnck_screen_get_default ();
- /* prepare to disable Maximus */
object_class = G_OBJECT_GET_CLASS (G_OBJECT(applet));
object_class->finalize = cw_applet_finalize;
parent_class = g_type_class_peek_parent (object_class);
- /* enable Maximus */
- GSettings *maximus_settings;
- maximus_settings = g_settings_new (MAXIMUS_SCHEMA);
- g_settings_set_boolean (maximus_settings, UNDECORATE_KEY, TRUE);
- g_settings_set_boolean (maximus_settings, NO_MAXIMIZE_KEY, FALSE);
- g_object_unref (maximus_settings);
-
/* gsettings prefs */
app->settings = mate_panel_applet_settings_new (applet, APPLET_SCHEMA);
g_signal_connect (app->settings, "changed::" SHOW_WIN_KEY,
debian/patches/series
0 → 100644
View file @
fc8a6ac5
0001_preserve_configuration.patch
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment