mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-23 08:00:20 +00:00
PixelPaint: Increase default size of new images from 1x1 to 480x360
This commit is contained in:
parent
eb76b18ee3
commit
398bf045c6
Notes:
sideshowbarker
2024-07-18 12:14:09 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/398bf045c60
1 changed files with 3 additions and 0 deletions
|
@ -66,6 +66,9 @@ CreateNewImageDialog::CreateNewImageDialog(GUI::Window* parent_window)
|
|||
|
||||
width_spinbox.set_range(1, 16384);
|
||||
height_spinbox.set_range(1, 16384);
|
||||
|
||||
width_spinbox.set_value(480);
|
||||
height_spinbox.set_value(360);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue