| Summary: | Is it possible to have the size of the quick search window saved ? | ||
|---|---|---|---|
| Product: | [Applications] digikam | Reporter: | Tung NGUYEN <ntung> |
| Component: | Searches-Advanced | Assignee: | Digikam Developers <digikam-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | caulier.gilles |
| Priority: | NOR | ||
| Version First Reported In: | 0.8.0 | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | 7.0.0 | |
| Sentry Crash Report: | |||
|
Description
Tung NGUYEN
2005-10-03 22:05:48 UTC
SVN commit 467068 by pahlibar:
save/restore quick search dialog size
BUGS: 113806
M +2 -2 searchquickdialog.cpp
--- trunk/extragear/graphics/digikam/digikam/searchquickdialog.cpp #467067:467068
@@ -74,8 +74,7 @@
SLOT(slotTimeOut()));
enableButtonOK(false);
- setInitialSize(QSize(480,400));
- adjustSize();
+ resize(configDialogSize("QuickSearch Dialog"));
// check if we are being passed a valid url
if (m_url.isValid())
@@ -103,6 +102,7 @@
SearchQuickDialog::~SearchQuickDialog()
{
+ saveDialogSize(("QuickSearch Dialog"));
delete m_timer;
}
I have tested this bug fix with the lastest SVN, the size of the quick search window is now saved. Thank you. Not reproducible with 7.0.0-beta1 |