added auto resizing input & settings

This commit is contained in:
fourtf
2017-01-21 05:14:27 +01:00
parent d215bd58b0
commit a114bd1204
12 changed files with 108 additions and 9 deletions
+7
View File
@@ -71,6 +71,7 @@ private:
settingsItems.push_back(&enableGifs);
settingsItems.push_back(&inlineWhispers);
settingsItems.push_back(&windowTopMost);
settingsItems.push_back(&compactTabs);
}
static QSettings settings;
@@ -215,6 +216,11 @@ public:
{
return Settings::windowTopMost;
}
static BoolSetting
getCompactTabs()
{
return Settings::compactTabs;
}
private:
static StringSetting theme;
@@ -242,6 +248,7 @@ private:
static BoolSetting enableGifs;
static BoolSetting inlineWhispers;
static BoolSetting windowTopMost;
static BoolSetting compactTabs;
};
}
}