From 4a0041efd5cc7e08063c09b02858fcd9c2b59880 Mon Sep 17 00:00:00 2001 From: umopapisdn Date: Mon, 24 Mar 2003 07:45:52 +0000 Subject: Bugfix: (bug #0000722) - Date-Popup in calendar-find dialog only appears shortly and then closes. This is due to the fact that the date-popup appears on top of the button just pressed, and when the mouseup event fires, it is on the date-popup, so this fix just moves the find dialog to the topleft corner, which makes sure that the date-popup doesn't appear underneath the clicking position. --- (limited to 'core/pim') diff --git a/core/pim/datebook/datebook.cpp b/core/pim/datebook/datebook.cpp index db2058b..fa509d9 100644 --- a/core/pim/datebook/datebook.cpp +++ b/core/pim/datebook/datebook.cpp @@ -908,6 +908,7 @@ void DateBook::slotFind() SIGNAL(signalWrapAround()), &frmFind, SLOT(slotWrapAround()) ); + frmFind.move(0,0); frmFind.exec(); inSearch = false; } -- cgit v0.9.0.2