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
+2 -2
View File
@@ -7,10 +7,10 @@
namespace chatterino {
namespace settings {
class BoolSetting : public Setting
class IntSetting : public Setting
{
public:
BoolSetting(const QString &name, int defaultValue)
IntSetting(const QString &name, int defaultValue)
: Setting(name)
, value(defaultValue)
, defaultValue(defaultValue)