summaryrefslogtreecommitdiff
path: root/libwindow-settings/marco-window-manager.c
diff options
context:
space:
mode:
authorSteve Zesch <[email protected]>2013-01-11 00:12:19 -0500
committerSteve Zesch <[email protected]>2013-01-11 00:12:19 -0500
commit8480f4f60a060781934f7ca96857118ff8ebec07 (patch)
treeba8c7b3b369c6c9862381a8ed471f2ed993d634a /libwindow-settings/marco-window-manager.c
parent088a9625513cc7cb5c8b4d5f18573c4ae42b488f (diff)
downloadmate-control-center-8480f4f60a060781934f7ca96857118ff8ebec07.tar.bz2
mate-control-center-8480f4f60a060781934f7ca96857118ff8ebec07.tar.xz
Changed the ordering that titlebar actions are displayed.
Previously, the ordering of the titlebar actions did not match the enum ordering in the schema file, which caused the wrong action to be set.
Diffstat (limited to 'libwindow-settings/marco-window-manager.c')
-rw-r--r--libwindow-settings/marco-window-manager.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libwindow-settings/marco-window-manager.c b/libwindow-settings/marco-window-manager.c
index 39c8ed9f..6562291e 100644
--- a/libwindow-settings/marco-window-manager.c
+++ b/libwindow-settings/marco-window-manager.c
@@ -354,11 +354,11 @@ marco_get_double_click_actions (MateWindowManager *wm,
int *n_actions_p)
{
static MateWMDoubleClickAction actions[] = {
+ { ACTION_TITLEBAR_TOGGLE_SHADE, N_("Roll up") },
{ ACTION_TITLEBAR_TOGGLE_MAXIMIZE, N_("Maximize") },
- { ACTION_TITLEBAR_TOGGLE_MAXIMIZE_VERTICALLY, N_("Maximize Vertically") },
{ ACTION_TITLEBAR_TOGGLE_MAXIMIZE_HORIZONTALLY, N_("Maximize Horizontally") },
+ { ACTION_TITLEBAR_TOGGLE_MAXIMIZE_VERTICALLY, N_("Maximize Vertically") },
{ ACTION_TITLEBAR_MINIMIZE, N_("Minimize") },
- { ACTION_TITLEBAR_TOGGLE_SHADE, N_("Roll up") },
{ ACTION_TITLEBAR_NONE, N_("None") }
};