Skip to content
This repository has been archived by the owner on Oct 24, 2018. It is now read-only.

Commit

Permalink
make manager window sensitive when history is shown
Browse files Browse the repository at this point in the history
  • Loading branch information
guinux committed Oct 20, 2015
1 parent fec0922 commit 60552a1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/manager_window.vala
Expand Up @@ -1045,8 +1045,10 @@ namespace Pamac {
}
var history_dialog = new HistoryDialog (this);
history_dialog.textview.buffer.set_text (text.str, (int) text.len);
history_dialog.run ();
history_dialog.destroy ();
history_dialog.show ();
history_dialog.response.connect (() => {
history_dialog.destroy ();
});
while (Gtk.events_pending ()) {
Gtk.main_iteration ();
}
Expand Down

0 comments on commit 60552a1

Please sign in to comment.