diff options
-rwxr-xr-x | control-center | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/control-center b/control-center index 92b54d9d..c58f852e 100755 --- a/control-center +++ b/control-center @@ -72,6 +72,8 @@ $window_splash->show_all; Gtk->main_iteration while Gtk->events_pending; my $timer_splash = Gtk->timeout_add(200, sub { Gtk->main_iteration while Gtk->events_pending }); +# timeout to avoid refresh problem +Gtk->timeout_add(100, sub{ 1 }); my $rc = "$mcc_dir/$theme/gtkrc"; -r $rc and Gtk::Rc->parse($rc); |