N#21884 Cannot select read-only by using the center of the scroll key * hildon-widget...
authorLuc Pionchon <luc.pionchon@nokia.com>
Wed, 11 Jan 2006 18:46:10 +0000 (18:46 +0000)
committerLuc Pionchon <luc.pionchon@nokia.com>
Wed, 11 Jan 2006 18:46:10 +0000 (18:46 +0000)
ChangeLog
debian/changelog
hildon-widgets/hildon-file-details-dialog.c

index 21b9bef..5fad385 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2006-01-11  Luc Pionchon  <luc.pionchon@nokia.com>
 
+       N#21884 Cannot select read-only by using the center of the scroll key
+       * hildon-widgets/hildon-file-details-dialog.c
+       (hildon_file_details_dialog_init): Removed dialog default response.
+
+2006-01-11  Luc Pionchon  <luc.pionchon@nokia.com>
+
        N#8094 5-bit color selector: wrong margins and pixel measurements
        M#59   HildonColorSelector needs more space
        * hildon-widgets/hildon-color-popup.c (HILDON_COLOR_COL_SPACING)
index cc8a1f4..447dc0a 100644 (file)
@@ -1,5 +1,6 @@
 hildon-libs (0.10.1-1) unstable; urgency=low
 
+  * N#21884 Cannot select read-only by using the center of the scroll key
   * N#8094 5-bit color selector: wrong margins and pixel measurements
     M#59   HildonColorSelector needs more space
 
index b735dd8..d46c052 100644 (file)
@@ -423,14 +423,13 @@ hildon_file_details_dialog_init(HildonFileDetailsDialog *self)
                                  GDK_HINT_MIN_SIZE | GDK_HINT_MAX_SIZE);
 
     gtk_widget_show_all(GTK_WIDGET(priv->notebook));
+
     priv->ok_button = gtk_dialog_add_button(GTK_DIALOG(self),
                           _("sfil_bd_filetype_details_dialog_ok"),
                           GTK_RESPONSE_OK);
     gtk_dialog_add_button(GTK_DIALOG(self),
                           _("sfil_bd_filetype_details_dialog_cancel"),
                           GTK_RESPONSE_CANCEL);
-    gtk_dialog_set_default_response(GTK_DIALOG(self),
-                          GTK_RESPONSE_OK);
 
     priv->toggle_handler = g_signal_connect(priv->file_readonly, "toggled", 
       G_CALLBACK(hildon_file_details_dialog_read_only_toggled),