[gnome-disk-utility] Make the S.M.A.R.T and benchmark dialogs work better with the shell



commit 8630e2df0fae2dba582318b4e382e3142984acc0
Author: Matthias Clasen <mclasen redhat com>
Date:   Tue Mar 1 16:12:59 2011 -0500

    Make the S.M.A.R.T and benchmark dialogs work better with the shell
    
    Don't set a parent, so they don't get attached to their parent window
    and remain resizable; also add close buttons, since the shell doesn't
    show those for dialogs.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=643335

 src/palimpsest/gdu-section-drive.c |   11 +++++------
 1 files changed, 5 insertions(+), 6 deletions(-)
---
diff --git a/src/palimpsest/gdu-section-drive.c b/src/palimpsest/gdu-section-drive.c
index 5457f15..40ece57 100644
--- a/src/palimpsest/gdu-section-drive.c
+++ b/src/palimpsest/gdu-section-drive.c
@@ -481,12 +481,12 @@ on_smart_button_clicked (GduButtonElement *button_element,
                          gpointer          user_data)
 {
         GduSectionDrive *section = GDU_SECTION_DRIVE (user_data);
-        GtkWindow *toplevel;
         GtkWidget *dialog;
 
-        toplevel = GTK_WINDOW (gdu_shell_get_toplevel (gdu_section_get_shell (GDU_SECTION (section))));
-        dialog = gdu_ata_smart_dialog_new (toplevel,
+        dialog = gdu_ata_smart_dialog_new (NULL,
                                            GDU_DRIVE (gdu_section_get_presentable (GDU_SECTION (section))));
+        gtk_dialog_add_button (GTK_DIALOG (dialog), GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE);
+
         gtk_widget_show_all (dialog);
         gtk_dialog_run (GTK_DIALOG (dialog));
         gtk_widget_destroy (dialog);
@@ -497,12 +497,11 @@ gdu_section_drive_on_benchmark_button_clicked (GduButtonElement *button_element,
                                                gpointer          user_data)
 {
         GduSection *section = GDU_SECTION (user_data);
-        GtkWindow *toplevel;
         GtkWidget *dialog;
 
-        toplevel = GTK_WINDOW (gdu_shell_get_toplevel (gdu_section_get_shell (GDU_SECTION (section))));
-        dialog = gdu_drive_benchmark_dialog_new (toplevel,
+        dialog = gdu_drive_benchmark_dialog_new (NULL,
                                                  GDU_DRIVE (gdu_section_get_presentable (GDU_SECTION (section))));
+        gtk_dialog_add_button (GTK_DIALOG (dialog), GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE);
         gtk_widget_show_all (dialog);
         gtk_dialog_run (GTK_DIALOG (dialog));
         gtk_widget_destroy (dialog);



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