diff options
author | Florian Müllner <[email protected]> | 2014-09-27 18:04:20 +0300 |
---|---|---|
committer | Victor Kareh <[email protected]> | 2018-08-28 09:38:37 -0400 |
commit | 997488f903cef76143e5b0f19a906cbb549d5761 (patch) | |
tree | fad0a52ca3f6c00f332be467acbc3cf2ad4e8f3b /src/ui/theme-parser.c | |
parent | 33c75c2a39c2f6da4a76a556e55f4a4a57aa7cd4 (diff) | |
download | marco-997488f903cef76143e5b0f19a906cbb549d5761.tar.bz2 marco-997488f903cef76143e5b0f19a906cbb549d5761.tar.xz |
theme: Add background functions for single buttons
With the existing background functions, single buttons can not be
styled separately - on the left side, the style of the left button
is picked, and the right button's style on the right side.
As theme authors may want to add rounded corners to button groups
as a whole, it makes sense to treat the case of a single button in
a group differently.
https://bugzilla.gnome.org/show_bug.cgi?id=635683
NOTE: Patch copied from mutter and adapted for metacity.
Diffstat (limited to 'src/ui/theme-parser.c')
-rw-r--r-- | src/ui/theme-parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/theme-parser.c b/src/ui/theme-parser.c index 49fcd732..b4186594 100644 --- a/src/ui/theme-parser.c +++ b/src/ui/theme-parser.c @@ -38,7 +38,7 @@ * look out for. */ #define THEME_MAJOR_VERSION 3 -#define THEME_MINOR_VERSION 2 +#define THEME_MINOR_VERSION 3 #define THEME_VERSION (1000 * THEME_MAJOR_VERSION + THEME_MINOR_VERSION) #define MARCO_THEME_FILENAME_FORMAT "metacity-theme-%d.xml" |