[gnome-boxes/gnome-3-8] wizard-source: Destroy, rather than hide the dilaog



commit 35f0a99ddd532c3f40bbea5d1e82712804241afb
Author: Gursimran singh <simar i3r gmail com>
Date:   Fri May 3 04:07:33 2013 +0530

    wizard-source: Destroy, rather than hide the dilaog
    
    Destroy the dialog rather than hiding it, which is more appropriate as
    dialog is always created on the fly. This also works around the issue of
    dialog being blank after first usage, which is actually a bug in gtk+
    (bug#699376).
    
    https://bugzilla.gnome.org/show_bug.cgi?id=699013

 src/wizard-source.vala |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/wizard-source.vala b/src/wizard-source.vala
index f331511..591223e 100644
--- a/src/wizard-source.vala
+++ b/src/wizard-source.vala
@@ -319,7 +319,7 @@ private class Boxes.WizardSource: GLib.Object {
             ret = true;
         }
 
-        dialog.hide ();
+        dialog.destroy ();
 
         return ret;
     }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]