From f86cbbe16a36c097a609e0bd1020136e6708eb32 Mon Sep 17 00:00:00 2001 From: Adasauce Date: Thu, 20 Feb 2020 11:50:56 -0400 Subject: Add constexpr for the minimum formlayout width to save on recalculation of the size and having to subtract the margins to do the tally, then re-apply. --- src/UserSettingsPage.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/UserSettingsPage.h') diff --git a/src/UserSettingsPage.h b/src/UserSettingsPage.h index ef8258b6..2b588412 100644 --- a/src/UserSettingsPage.h +++ b/src/UserSettingsPage.h @@ -33,6 +33,11 @@ constexpr int OptionMargin = 6; constexpr int LayoutTopMargin = 50; constexpr int LayoutBottomMargin = LayoutTopMargin; +// based on the width of the widest item currently in the layout (deviceFingerprintValue_) +// used for recalculating the margins of the formLayout_ on resize to help with small screens and +// mobile devices. +constexpr int LayoutMinWidth = 385; + class UserSettings : public QObject { Q_OBJECT -- cgit 1.5.1