[gnome-mines] Increase the size of the window icons



commit 08429b5c5510e2ab60502d627b9a9e8c3a82d223
Author: Michael Catanzaro <mcatanzaro gnome org>
Date:   Sun Jan 26 22:08:07 2014 -0600

    Increase the size of the window icons
    
    Let's use the same size as all the other games.

 src/gnome-mines.vala |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/gnome-mines.vala b/src/gnome-mines.vala
index 48180c5..92f3a44 100644
--- a/src/gnome-mines.vala
+++ b/src/gnome-mines.vala
@@ -176,7 +176,7 @@ public class Mines : Gtk.Application
 
         hint_button = new Gtk.Button ();
         var box = new Gtk.Box (Gtk.Orientation.VERTICAL, 2);
-        var image = new Gtk.Image.from_icon_name ("dialog-question-symbolic", Gtk.IconSize.DND);
+        var image = new Gtk.Image.from_icon_name ("dialog-question-symbolic", Gtk.IconSize.DIALOG);
         box.pack_start (image);
         flag_label = new Gtk.Label ("");
         box.pack_start (flag_label);
@@ -190,7 +190,7 @@ public class Mines : Gtk.Application
 
         play_pause_button = new Gtk.Button ();
         box = new Gtk.Box (Gtk.Orientation.VERTICAL, 2);
-        play_pause_image = new Gtk.Image.from_icon_name ("view-refresh-symbolic", Gtk.IconSize.DND);
+        play_pause_image = new Gtk.Image.from_icon_name ("view-refresh-symbolic", Gtk.IconSize.DIALOG);
         box.pack_start (play_pause_image);
         clock_label = new Gtk.Label ("");
         box.pack_start (clock_label);


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