diff options
-rw-r--r-- | perl-install/install/NEWS | 3 | ||||
-rw-r--r-- | perl-install/install/share/list.xml | 7 | ||||
-rw-r--r-- | perl-install/install/steps_gtk.pm | 2 |
3 files changed, 10 insertions, 2 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 24d8fbd6f..bc00fb9d8 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,5 +1,8 @@ - partitioning: o do not propose check bad blocks for btrfs (Manuel Hiebel, mga#10116) +- revert back to matchbox instead of mutter as it doesn't fix + diskdrake issues (mga#11977) + (thus fixing missing window decorations (mga#12218)) Version 16.20 - 6 January 2014 diff --git a/perl-install/install/share/list.xml b/perl-install/install/share/list.xml index 1ca4f80cf..094f59ce7 100644 --- a/perl-install/install/share/list.xml +++ b/perl-install/install/share/list.xml @@ -240,7 +240,8 @@ /sbin/mount.ntfs-3g <!-- cannot be expanded as binary, not executable for all users --> /sbin/blkid - /usr/bin/mutter + /usr/bin/drakx-matchbox-window-manager + /usr/share/matchbox/mbnoapp.xpm /usr/share/icons/gnome/scalable/status/dialog-warning-symbolic.svg @@ -297,6 +298,10 @@ </if> <from expand="glob"> + <!-- needed by matchbox --> + <from spaces_in_filename="1"> + /usr/share/themes/Ia Ora*/matchbox/* + </from> /usr/share/themes/oxygen-gtk* /usr/LIB/gdk-pixbuf-2.0/*/loaders.cache /usr/LIB/gdk-pixbuf-2.0/*/loaders/libpixbufloader-png.so diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm index caeaf997c..166bb7770 100644 --- a/perl-install/install/steps_gtk.pm +++ b/perl-install/install/steps_gtk.pm @@ -46,7 +46,7 @@ sub new($$) { run_program::run('xset', 'm', '1/8', '1'); } any::disable_x_screensaver(); - run_program::raw({ detach => 1 }, 'mutter'); + run_program::raw({ detach => 1 }, 'drakx-matchbox-window-manager'); install::gtk::init_gtk($o); install::gtk::init_sizes($o); install::gtk::install_theme($o); |