summaryrefslogtreecommitdiff
path: root/plugins/gtkui/ddbseekbar.vala
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-04-18 16:56:16 +0200
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-04-18 16:56:16 +0200
commit60fc6f6512f98af10228d055e88e61b7204a427c (patch)
tree2066939dfb4dd3a6530acb2f684202c17eb60b5c /plugins/gtkui/ddbseekbar.vala
parentad3af05b3b56f78f5446727e568c874b54ec4d40 (diff)
some tweaks to custom widget colors handling
Diffstat (limited to 'plugins/gtkui/ddbseekbar.vala')
-rw-r--r--plugins/gtkui/ddbseekbar.vala5
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/gtkui/ddbseekbar.vala b/plugins/gtkui/ddbseekbar.vala
index f6c70efd..c9256666 100644
--- a/plugins/gtkui/ddbseekbar.vala
+++ b/plugins/gtkui/ddbseekbar.vala
@@ -53,6 +53,11 @@ namespace Ddb {
public override bool motion_notify_event (Gdk.EventMotion event) {
return on_seekbar_motion_notify_event (this, event);
}
+
+ public override bool configure_event (Gdk.EventConfigure event) {
+ Gtkui.init_theme_colors ();
+ return false;
+ }
}
}