Allow window sizes smaller than 400x400

This commit is contained in:
Nicolas Werner 2022-02-14 22:56:35 +01:00
parent 1df1b5037e
commit e077bdbdd5
No known key found for this signature in database
GPG key ID: C8D75E610773F2D9
4 changed files with 17 additions and 12 deletions

View file

@ -39,9 +39,6 @@ constexpr int labelSize = 15;
}
namespace modals {
constexpr int MIN_WIDGET_WIDTH = 400;
constexpr int MIN_WIDGET_HEIGHT = 400;
constexpr int WIDGET_MARGIN = 20;
constexpr int WIDGET_SPACING = 15;
constexpr int WIDGET_TOP_MARGiN = 2 * WIDGET_MARGIN;
@ -76,8 +73,8 @@ constexpr int height = 600;
constexpr int width = 1066;
constexpr int minModalWidth = 340;
constexpr int minHeight = height;
constexpr int minWidth = 950;
constexpr int minHeight = 340;
constexpr int minWidth = 340;
} // namespace window
namespace textInput {