diff options
-rwxr-xr-x | rpmdrake | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -150,7 +150,8 @@ sub do_search($$$$$$$) { $tree->expand_row($path, 0); $tree->scroll_to_cell($path, undef, 1, 0.5, 0); } else { - statusbar_msg(N("Search results (none)")); + my $wait = statusbar_msg(N("Search results (none)")); + Glib::Timeout->add(5000, sub { statusbar_msg_remove($wait); 0 }); gtkset_mousecursor_normal($::w->{rwindow}->window); } } |