| Summary: | Remember wallet manager window size / At least increase default | ||
|---|---|---|---|
| Product: | [Frameworks and Libraries] frameworks-kwallet | Reporter: | Ralf Jung <post> |
| Component: | general | Assignee: | Valentin Rusu <valir> |
| Status: | REOPENED --- | ||
| Severity: | normal | CC: | kdelibs-bugs-null |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Other | ||
| OS: | Linux | ||
| Latest Commit: | http://commits.kde.org/kwallet/917c49e4b8d46970bfe76f87ffc845ce8d5b9fe1 | Version Fixed/Implemented In: | |
| Sentry Crash Report: | |||
|
Description
Ralf Jung
2015-09-23 11:15:53 UTC
Git commit 917c49e4b8d46970bfe76f87ffc845ce8d5b9fe1 by Valentin Rusu. Committed on 15/11/2015 at 22:14. Pushed by vrusu into branch 'master'. Using a bigger default size Couldn't test this though, as I'm using a tiling window manager that helped me definitely forget about the window positioning stuff. M +2 -2 src/manager/walletcontrolwidget.ui http://commits.kde.org/kwallet/917c49e4b8d46970bfe76f87ffc845ce8d5b9fe1 Has this patch landed in time for the 15.12 release? I upgraded kwalletmanager to 15.12 (Debian packages), but the window is still too small per default, nor does it remember its size. Actually, your patch does not even help here. However, this one does:
--- a/src/manager/kwalletmanager.cpp
+++ b/src/manager/kwalletmanager.cpp
@@ -179,6 +179,8 @@
setupGUI(Keys | Save | Create, QLatin1String("kwalletmanager.rc"));
setStandardToolBarMenuEnabled(false);
+ resize(900, 720);
+
if (_tray) {
// _tray->show();
} else {
|