------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=97376 jens.dagerbo swipnet se changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From jens.dagerbo swipnet se 2006-12-30 23:37 ------- SVN commit 618040 by dagerbo: Stop with the blinking already! BUG: 97376 M +8 -1 grepdlg.cpp M +1 -0 grepdlg.h --- branches/kdevelop/3.4/parts/grepview/grepdlg.cpp #618039:618040 @ -335,11 +335,18 @ // not beautiful, but works with all window // managers and Qt versions if (isVisible()) - QDialog::hide(); + hide(); +// QDialog::hide(); QDialog::show(); pattern_combo->setFocus(); } +void GrepDialog::hide() +{ + pattern_combo->setFocus(); + QDialog::hide(); +} + void GrepDialog::slotSynchDirectory( ) { KParts::ReadOnlyPart * part = dynamic_cast( m_part->partController()->activePart() ); --- branches/kdevelop/3.4/parts/grepview/grepdlg.h #618039:618040 @ -61,6 +61,7 @ { return keep_output_box->isChecked(); } void show(); + void hide(); signals: void searchClicked();