frontend: Set minimum window size to 640x360 instead of 1280x720 (#3413)

This commit is contained in:
Morph 2020-05-15 16:22:27 -04:00 committed by GitHub
parent 024c84d2db
commit b73f678ee8
6 changed files with 36 additions and 8 deletions

View file

@ -8,6 +8,11 @@
namespace Layout {
namespace MinimumSize {
constexpr u32 Width = 640;
constexpr u32 Height = 360;
} // namespace MinimumSize
namespace ScreenUndocked {
constexpr u32 Width = 1280;
constexpr u32 Height = 720;