diff options
author | gregory guy <[email protected]> | 2021-03-10 17:21:34 +0100 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2021-03-11 23:03:46 +0900 |
commit | f328cfdf8f6b6b4c7ddfac1f01206b118e821173 (patch) | |
tree | 55665eef368fbf1a852da8c68482c2c91600a1e1 | |
parent | 0d02e25fb66fc6c128aecbe0be7a321c5255952d (diff) | |
download | kaffeine-f328cfdf8f6b6b4c7ddfac1f01206b118e821173.tar.gz kaffeine-f328cfdf8f6b6b4c7ddfac1f01206b118e821173.zip |
Set the size of the main window to 600p of width and 500p of height for the application first start.
Signed-off-by: gregory guy <[email protected]>
(cherry picked from commit 6658071a0826daea32e641bd0990d015dd4d30dd)
-rw-r--r-- | kaffeine/src/kaffeine.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kaffeine/src/kaffeine.cpp b/kaffeine/src/kaffeine.cpp index 3170675..b4c6606 100644 --- a/kaffeine/src/kaffeine.cpp +++ b/kaffeine/src/kaffeine.cpp @@ -152,6 +152,7 @@ Kaffeine::Kaffeine() : DCOPObject("KaffeineIface"), setupActions(); setStandardToolBarMenuEnabled(true); //createStandardStatusBarAction(); + resize( TQSize(600, 500) ); createGUI("kaffeineui.rc"); //statusBar()->insertItem(i18n("Entries: %1, Playtime: %2 (Total: %3, %4)").arg("0").arg("00:00:00").arg("0").arg("00:00:00"), 9, 0, true); |