Explorar el Código

Make default sprite importer canvas bigger

Daniele Bartolini hace 9 años
padre
commit
d983ca7c1c
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      tools/level_editor/sprite_import_dialog.vala

+ 2 - 2
tools/level_editor/sprite_import_dialog.vala

@@ -215,8 +215,8 @@ public class SpriteImportDialog : Gtk.Dialog
 			});
 			});
 
 
 		_scrolled_window = new Gtk.ScrolledWindow(null, null);
 		_scrolled_window = new Gtk.ScrolledWindow(null, null);
-		_scrolled_window.min_content_width = 512;
-		_scrolled_window.min_content_height = 512;
+		_scrolled_window.min_content_width = 640;
+		_scrolled_window.min_content_height = 640;
 		_scrolled_window.add(_drawing_area);
 		_scrolled_window.add(_drawing_area);
 
 
 		resolution = new Gtk.Label(_pixbuf.width.to_string() + " × " + _pixbuf.height.to_string());
 		resolution = new Gtk.Label(_pixbuf.width.to_string() + " × " + _pixbuf.height.to_string());