diff --git a/data/widgets/new_sprite.xml b/data/widgets/new_sprite.xml index 3aed749ce..1861f5795 100644 --- a/data/widgets/new_sprite.xml +++ b/data/widgets/new_sprite.xml @@ -13,11 +13,11 @@ - - - - - + + + + + diff --git a/src/app/commands/cmd_new_file.cpp b/src/app/commands/cmd_new_file.cpp index a495eb145..01065bbb6 100644 --- a/src/app/commands/cmd_new_file.cpp +++ b/src/app/commands/cmd_new_file.cpp @@ -75,7 +75,7 @@ void NewFileCommand::onExecute(Context* context) app::gen::NewSprite window; // Default values: Indexed, 320x240, Background color - format = static_cast(get_config_int("NewSprite", "Type", IMAGE_INDEXED)); + format = static_cast(get_config_int("NewSprite", "Type", IMAGE_RGB)); // Invalid format in config file. if (format != IMAGE_RGB && format != IMAGE_INDEXED && format != IMAGE_GRAYSCALE) { format = IMAGE_INDEXED;