summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorcinamod <cinamod>2004-08-13 16:56:30 +0000
committercinamod <cinamod>2004-08-13 16:56:30 +0000
commit452dfcb08171a4b61a6df2fd064d9faec19668a7 (patch)
tree275254e029e1289cdebaedc9746e0a87308428e3 /modules
parentc92d4d67868501a72cfb9abc39f4cd6b23582607 (diff)
downloadgtk+-452dfcb08171a4b61a6df2fd064d9faec19668a7.tar.gz
draw handle box tearoffs properly now in XP mode
Diffstat (limited to 'modules')
-rwxr-xr-xmodules/engines/ms-windows/ChangeLog.old5
-rwxr-xr-xmodules/engines/ms-windows/msw_style.c8
2 files changed, 6 insertions, 7 deletions
diff --git a/modules/engines/ms-windows/ChangeLog.old b/modules/engines/ms-windows/ChangeLog.old
index 21bb06c5a1..dbbc191c24 100755
--- a/modules/engines/ms-windows/ChangeLog.old
+++ b/modules/engines/ms-windows/ChangeLog.old
@@ -1,3 +1,8 @@
+2004-08-13 Dom Lachowicz <cinamod@hotmail.com>
+
+ * src/msw_style.c: Proper gripper drawing for handle boxes/toolbars
+ * src/Theme/gtk-2.0/gtkrc: HandleBoxes and Toolbars are etched-in now
+
2004-07-02 Raymond Penners <raymond@dotsphinx.com>
* === Released 0.6.1 ===
diff --git a/modules/engines/ms-windows/msw_style.c b/modules/engines/ms-windows/msw_style.c
index 80a5c3d737..6a37312a47 100755
--- a/modules/engines/ms-windows/msw_style.c
+++ b/modules/engines/ms-windows/msw_style.c
@@ -1424,12 +1424,6 @@ draw_box (GtkStyle *style,
}
}
}
- else if (detail && !strcmp (detail, "handlebox_bin")) {
- if (xp_theme_draw (window, XP_THEME_ELEMENT_REBAR, style, x, y, width, height, state_type, area))
- {
- return;
- }
- }
else if (detail && strcmp (detail, "menuitem") == 0) {
shadow_type = GTK_SHADOW_NONE;
if (xp_theme_draw (window, XP_THEME_ELEMENT_MENU_ITEM, style, x, y, width, height, state_type, area))
@@ -1804,7 +1798,7 @@ draw_handle (GtkStyle *style,
gint height,
GtkOrientation orientation)
{
- if (! GTK_IS_HANDLE_BOX (widget))
+ if (GTK_IS_HANDLE_BOX (widget))
{
XpThemeElement hndl;