diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2017-05-19 19:09:17 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2017-05-19 19:09:17 +0200 |
commit | ff83cfac10939ceba524c93d4e36f634f4bec805 (patch) | |
tree | d481913f2136bf04d2d1deb650e6bd084a531676 /plugingui/abouttab.h | |
parent | a3dc9bd19f976cbc84ba3d1a16c72257b42b28ba (diff) |
Make sure we don't resize to negative values.
Diffstat (limited to 'plugingui/abouttab.h')
-rw-r--r-- | plugingui/abouttab.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugingui/abouttab.h b/plugingui/abouttab.h index 556b5bb..ecec13a 100644 --- a/plugingui/abouttab.h +++ b/plugingui/abouttab.h @@ -48,7 +48,7 @@ private: std::string getAboutText(); TextEdit text_edit{this}; - std::size_t margin{10}; + int margin{10}; Resource about{":../ABOUT"}; Resource authors{":../AUTHORS"}; |