1
0
Fork 0

In progress...

This commit is contained in:
Kolan Sh 2016-04-06 19:43:13 +03:00
parent 5f66c66c13
commit 4febb98a53
1 changed files with 6 additions and 0 deletions

View File

@ -17,6 +17,12 @@ namespace LAview.Core.Plugins {
//dialog.application = application;
dialog.delete_event.connect ((source) => {return true;});
}
dialog.response.connect ((response_id) => {
if (response_id == Gtk.ResponseType.CANCEL || response_id == Gtk.ResponseType.DELETE_EVENT) {
dialog.hide_on_delete ();
}
});
}
public void show_all () {