HIG: Put the OK button in the end
authorZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Fri, 24 Apr 2009 13:34:34 +0000 (16:34 +0300)
committerZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Fri, 24 Apr 2009 13:34:34 +0000 (16:34 +0300)
src/ui/rygel-preferences-dialog.vala

index 434bd62..83e479e 100644 (file)
@@ -38,9 +38,9 @@ public class Rygel.PreferencesDialog : Dialog {
 
         this.vbox.add (this.notebook);
 
-        this.add_button (STOCK_OK, ResponseType.ACCEPT);
         this.add_button (STOCK_APPLY, ResponseType.APPLY);
         this.add_button (STOCK_CANCEL, ResponseType.REJECT);
+        this.add_button (STOCK_OK, ResponseType.ACCEPT);
 
         this.response += this.on_response;