Skip to content

Commit

Permalink
FontEditor: Tighten the window size a bit.
Browse files Browse the repository at this point in the history
  • Loading branch information
awesomekling committed Apr 10, 2019
1 parent 313ac51 commit e61dd99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Applications/FontEditor/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ int main(int argc, char** argv)

auto* window = new GWindow;
window->set_title("FontEditor");
window->set_rect({ 50, 50, 420, 300 });
window->set_rect({ 50, 50, 390, 295 });
auto* font_editor = new FontEditorWidget(path, move(edited_font));
window->set_main_widget(font_editor);
window->set_should_exit_event_loop_on_close(true);
Expand Down

0 comments on commit e61dd99

Please sign in to comment.