tools
[app.Builder.js] / Sample / DialogConfirm.js
index 2926920..70703ac 100644 (file)
@@ -25,8 +25,9 @@ DialogConfirm=new XObject({
     message_type : Gtk.MessageType.QUESTION,
     use_markup : true,
     text : "-",
+    modal : true,
     listeners : {
-        "response":function (self, response_id) {
+        response : function (self, response_id) {
            this.el.hide();
         print("RESPOSE: " + response_id);
             if (response_id == -8) { //yes!
@@ -34,7 +35,7 @@ DialogConfirm=new XObject({
               this.success();
             }
         },
-        "delete_event":function (self, event) {
+        delete_event : function (self, event) {
             this.el.hide();
             return true;
         }