From 49a0a8eb9bdab5ef968283dbd6cc512e9df33ea7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 20 Oct 2016 17:09:39 +0200 Subject: [PATCH] xfce: unbreak gtk3 theming for xfce desktop users This is a partial revert of f0da9ff4. The half-usable menus in gtk3 apps have been aggravating me for months. (cherry picked from commit 446d57c66a092f5719cd5a93f0d7edbb60e3d13a) --- pkgs/desktops/xfce/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/desktops/xfce/default.nix b/pkgs/desktops/xfce/default.nix index fff958de9a07da..97833d64330768 100644 --- a/pkgs/desktops/xfce/default.nix +++ b/pkgs/desktops/xfce/default.nix @@ -21,7 +21,8 @@ xfce_self = rec { # the lines are very long but it seems better than the even-od exo = callPackage ./core/exo.nix { }; garcon = callPackage ./core/garcon.nix { }; - gtk_xfce_engine = callPackage ./core/gtk-xfce-engine.nix { withGtk3 = true; }; # ToDo: when should be used? + gtk_xfce_engine = callPackage ./core/gtk-xfce-engine.nix + { withGtk3 = false; }; # = true; was completely breaking GTK3 app layout libxfce4ui = callPackage ./core/libxfce4ui.nix { }; libxfce4ui_gtk3 = libxfce4ui.override { withGtk3 = true; }; libxfce4util = callPackage ./core/libxfce4util.nix { };