author | zautrix <zautrix> | 2005-03-10 14:45:20 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-03-10 14:45:20 (UTC) |
commit | 3a1891136e7b1290a6b3ddd573a863e51bd3047b (patch) (unidiff) | |
tree | 1de78034c5b222e57ef05b7e735f979fe2944966 | |
parent | 34f5a1b758adb98c466ae8e45c9d980d62dfc544 (diff) | |
download | kdepimpi-3a1891136e7b1290a6b3ddd573a863e51bd3047b.zip kdepimpi-3a1891136e7b1290a6b3ddd573a863e51bd3047b.tar.gz kdepimpi-3a1891136e7b1290a6b3ddd573a863e51bd3047b.tar.bz2 |
fixes
-rw-r--r-- | bin/kdepim/WhatsNew.txt | 4 | ||||
-rw-r--r-- | korganizer/kodialogmanager.cpp | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/bin/kdepim/WhatsNew.txt b/bin/kdepim/WhatsNew.txt index 95a1866..5661955 100644 --- a/bin/kdepim/WhatsNew.txt +++ b/bin/kdepim/WhatsNew.txt | |||
@@ -15,8 +15,12 @@ Changed "ME" menu bar entry to an icon. | |||
15 | KO/Pi: | 15 | KO/Pi: |
16 | Fixed two minor bugs in displaying todos. | 16 | Fixed two minor bugs in displaying todos. |
17 | If in month view a cell is selected, the key shortcut "d" shows now that date. | 17 | If in month view a cell is selected, the key shortcut "d" shows now that date. |
18 | Added complete info for a todo in month view as an icon left of the text. | 18 | Added complete info for a todo in month view as an icon left of the text. |
19 | Fixed problems of displaying data when "<" or ">" were used in summary/location/description. | ||
20 | Fixed problem of search dialog size when switching displays. | ||
21 | Cancel key now closes date picker. | ||
22 | Rearranged KO/Pi file menu structure. | ||
19 | 23 | ||
20 | 24 | ||
21 | ********** VERSION 2.0.14 ************ | 25 | ********** VERSION 2.0.14 ************ |
22 | 26 | ||
diff --git a/korganizer/kodialogmanager.cpp b/korganizer/kodialogmanager.cpp index 1af9dad..a8652ea 100644 --- a/korganizer/kodialogmanager.cpp +++ b/korganizer/kodialogmanager.cpp | |||
@@ -212,9 +212,10 @@ void KODialogManager::showSearchDialog() | |||
212 | } | 212 | } |
213 | // make sure the widget is on top again | 213 | // make sure the widget is on top again |
214 | #ifdef DESKTOP_VERSION | 214 | #ifdef DESKTOP_VERSION |
215 | mSearchDialog->show(); | 215 | mSearchDialog->show(); |
216 | #else | 216 | #else |
217 | mSearchDialog->setMaximumSize( QApplication::desktop()->size()); | ||
217 | mSearchDialog->showMaximized(); | 218 | mSearchDialog->showMaximized(); |
218 | #endif | 219 | #endif |
219 | mSearchDialog->raise(); | 220 | mSearchDialog->raise(); |
220 | } | 221 | } |