forked from AuroraMiddleware/gtk
Several last-minute fixes
This commit is contained in:
parent
2344c84ea5
commit
b14b12f9d2
@ -1,8 +1,16 @@
|
|||||||
|
2003-09-15 Raymond Penners <raymond@dotsphinx.com>
|
||||||
|
|
||||||
|
* src/wimp_style.c: Fixed typ-o (gtk-double-cliNk-time), adjusted
|
||||||
|
cursor blink time to cope with Windows semantics (GTK+ uses cycle
|
||||||
|
time), fixed clipping area computation.
|
||||||
|
|
||||||
2003-09-15 Dom Lachowicz <cinamod@hotmail.com>
|
2003-09-15 Dom Lachowicz <cinamod@hotmail.com>
|
||||||
|
|
||||||
* src/wimp_style.c: Fix a few more console messages, implement caret blinking
|
* src/wimp_style.c: Fix a few more console messages, implement
|
||||||
* src/xp_theme.*: Stub out line drawing. Apparently, documented bits arae missing
|
caret blinking
|
||||||
from MS's implementation. Go figure...
|
|
||||||
|
* src/xp_theme.*: Stub out line drawing. Apparently, documented
|
||||||
|
bits are missing from MS's implementation. Go figure...
|
||||||
|
|
||||||
2003-09-14 Raymond Penners <raymond@dotsphinx.com>
|
2003-09-14 Raymond Penners <raymond@dotsphinx.com>
|
||||||
|
|
||||||
@ -10,7 +18,7 @@
|
|||||||
"default_border".
|
"default_border".
|
||||||
|
|
||||||
* src/wimp_style.c: Due to a bug lots of console message
|
* src/wimp_style.c: Due to a bug lots of console message
|
||||||
complaining about "unexpected keyword `fg'" and occured, fixed.
|
complaining about "unexpected keyword `fg'" occured, fixed.
|
||||||
|
|
||||||
2003-09-11 Dom Lachowicz <cinamod@hotmail.com>
|
2003-09-11 Dom Lachowicz <cinamod@hotmail.com>
|
||||||
|
|
||||||
|
@ -223,10 +223,10 @@ setup_system_settings (GtkStyle * style)
|
|||||||
if (cursor_blink_time > 0)
|
if (cursor_blink_time > 0)
|
||||||
{
|
{
|
||||||
g_object_set (G_OBJECT (settings), "gtk-cursor-blink-time",
|
g_object_set (G_OBJECT (settings), "gtk-cursor-blink-time",
|
||||||
cursor_blink_time, NULL);
|
2*cursor_blink_time, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
g_object_set (G_OBJECT (settings), "gtk-double-clink-time",
|
g_object_set (G_OBJECT (settings), "gtk-double-click-time",
|
||||||
GetDoubleClickTime(), NULL);
|
GetDoubleClickTime(), NULL);
|
||||||
g_object_set (G_OBJECT (settings), "gtk-dnd-drag-threshold",
|
g_object_set (G_OBJECT (settings), "gtk-dnd-drag-threshold",
|
||||||
GetSystemMetrics (SM_CXDRAG), NULL);
|
GetSystemMetrics (SM_CXDRAG), NULL);
|
||||||
|
@ -612,8 +612,8 @@ xp_theme_draw(GdkWindow *win, XpThemeElement element, GtkStyle *style,
|
|||||||
{
|
{
|
||||||
clip.left = area->x - xoff;
|
clip.left = area->x - xoff;
|
||||||
clip.top = area->y - yoff;
|
clip.top = area->y - yoff;
|
||||||
clip.right = rect.left + area->width;
|
clip.right = clip.left + area->width;
|
||||||
clip.bottom = rect.top + area->height;
|
clip.bottom = clip.top + area->height;
|
||||||
|
|
||||||
pClip = &clip;
|
pClip = &clip;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user