diff options
-rwxr-xr-x | modules/engines/ms-windows/ChangeLog.old | 9 | ||||
-rwxr-xr-x | modules/engines/ms-windows/xp_theme.c | 2 |
2 files changed, 7 insertions, 4 deletions
diff --git a/modules/engines/ms-windows/ChangeLog.old b/modules/engines/ms-windows/ChangeLog.old index 949939d21c..0a88e728d6 100755 --- a/modules/engines/ms-windows/ChangeLog.old +++ b/modules/engines/ms-windows/ChangeLog.old @@ -1,7 +1,10 @@ 2003-08-23 Raymond Penners <raymond@dotsphinx.com>
- * src/*.c: Merged Dom Lachowicz's patches, now tooltips nicely
- adhere to the system colors as well.
+ * src/*.c: Merged Dom Lachowicz's patches, now tooltips and
+ progress bars nicely adhere to the system colors as well.
+
+ * src/xp_theme.c: There was a mixup in drawing the proper checkbox
+ state, fixed (Gaim bug #790305).
2003-08-20 Raymond Penners <raymond@dotsphinx.com>
@@ -11,7 +14,7 @@ * */Makefile.msc: Provided MS-VC++ make files.
* src/xp_theme.c: The open/close tree expander symbols were
- accidentally switched. Fixed.
+ accidentally switched, fixed (Gaim bug #790300).
2003-08-11 Raymond Penners <raymond@dotsphinx.com>
diff --git a/modules/engines/ms-windows/xp_theme.c b/modules/engines/ms-windows/xp_theme.c index 6f7ad27b79..142c51002c 100755 --- a/modules/engines/ms-windows/xp_theme.c +++ b/modules/engines/ms-windows/xp_theme.c @@ -364,7 +364,7 @@ xp_theme_map_gtk_state(XpThemeElement element, GtkStateType state) switch(state) { case GTK_STATE_SELECTED: - ret = CBS_CHECKEDPRESSED; + ret = CBS_UNCHECKEDPRESSED; break; case GTK_STATE_PRELIGHT: ret = CBS_UNCHECKEDHOT; |