-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6ae351a
commit 11a3bcc
Showing
3 changed files
with
9 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,11 @@ budgie-desktop-environment (0.7.3) zesty; urgency=medium | |
|
||
* Bug fix release (LP: #) | ||
- allow QT apps to theme correctly with new version in zesty | ||
- correct file permissions for profile.d override | ||
- hide the default gnome-region applet from system settings; | ||
language selector gnome is its replacement | ||
* Package Changes | ||
- add QT5-style-plugins to allow correct gtk theming | ||
|
||
-- David Mohammed <[email protected]> Sat, 18 Feb 2017 21:03:52 +0000 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
#!/bin/sh | ||
|
||
# force environment variable removal to allow QT apps to be themed correctly | ||
# force QT override to not have a value to allow QT apps to be themed correctly | ||
# this is new due to zesty including QT 5.8 | ||
unset QT_STYLE_OVERRIDE | ||
export QT_STYLE_OVERRIDE= | ||
|
||
# with qt-style-plugins ensure QT apps now pickup a GTK theme | ||
export QT_QPA_PLATFORMTHEME=gtk2 |