浏览代码

PixelPaint: Increase default size of new images from 1x1 to 480x360

Andreas Kling 4 年之前
父节点
当前提交
398bf045c6
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      Userland/Applications/PixelPaint/CreateNewImageDialog.cpp

+ 3 - 0
Userland/Applications/PixelPaint/CreateNewImageDialog.cpp

@@ -66,6 +66,9 @@ CreateNewImageDialog::CreateNewImageDialog(GUI::Window* parent_window)
 
 
     width_spinbox.set_range(1, 16384);
     width_spinbox.set_range(1, 16384);
     height_spinbox.set_range(1, 16384);
     height_spinbox.set_range(1, 16384);
+
+    width_spinbox.set_value(480);
+    height_spinbox.set_value(360);
 }
 }
 
 
 }
 }