diff options
author | Frédéric Crozat <fcrozat@src.gnome.org> | 2002-09-06 19:34:57 +0000 |
---|---|---|
committer | Frédéric Crozat <fcrozat@src.gnome.org> | 2002-09-06 19:34:57 +0000 |
commit | fcb791d5a04eef64fe5e611413ed0d40af689997 (patch) | |
tree | 36f4616a0d6d6cd64561ce78fc73f15d9052a0a6 | |
parent | 175565eb7184a3061c4f64f0f87ca506b8d0b7c0 (diff) | |
download | metacity-fcb791d5a04eef64fe5e611413ed0d40af689997.tar.gz |
Fix titlebar glitch on small dialogs.
* src/themes/Crux/metacity-theme-1.xml: Fix titlebar
glitch on small dialogs.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/themes/Crux/metacity-theme-1.xml | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2002-09-06 Frederic Crozat <fred@crozat.net> + + * src/themes/Crux/metacity-theme-1.xml: Fix titlebar + glitch on small dialogs. + 2002-09-06 Arvind Samptur <arvind.samptur@wipro.com> * theme-format.txt : corrected some of the attributes which were not in sync with theme-parser.c diff --git a/src/themes/Crux/metacity-theme-1.xml b/src/themes/Crux/metacity-theme-1.xml index b2219df7..989e9944 100644 --- a/src/themes/Crux/metacity-theme-1.xml +++ b/src/themes/Crux/metacity-theme-1.xml @@ -95,7 +95,7 @@ <image filename="inactive-top-center-left.png" x="4" y="0" width="(left_width + ButtonWidth + IconTitleSpacing + title_width) `min` - (width - right_width - 3 * ButtonWidth - CenterTitlePieceWidth - 3)" + (width - right_width - 3 * ButtonWidth - CenterTitlePieceWidth * height / 22 - 3)" height="height"/> <image filename="inactive-top-center-mid.png" @@ -266,7 +266,7 @@ colorize="gtk:bg[SELECTED]" x="4" y="0" width="(left_width + ButtonWidth + IconTitleSpacing + title_width) `min` - (width - right_width - 3 * ButtonWidth - CenterTitlePieceWidth - 3)" + (width - right_width - 3 * ButtonWidth - CenterTitlePieceWidth * height / 22 - 3)" height="height"/> <image filename="active-top-center-mid-left.png" |