File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -543,7 +543,7 @@ void WSearchLineEdit::slotTriggerSearch() {
543
543
// / saves the current query as selection
544
544
void WSearchLineEdit::slotSaveSearch () {
545
545
m_saveTimer.stop ();
546
- QString cText = currentText ();
546
+ QString cText = currentText (); // Keep original text with spaces for UI
547
547
int cIndex = findCurrentTextIndex ();
548
548
#if ENABLE_TRACE_LOG
549
549
kLogger .trace ()
@@ -562,13 +562,16 @@ void WSearchLineEdit::slotSaveSearch() {
562
562
}
563
563
if (cIndex > 0 || cIndex == -1 ) {
564
564
// If the query doesn't exist yet or was not at top, insert it at the top
565
- insertItem (0 , cText);
565
+ insertItem (0 , cText. trimmed () );
566
566
}
567
567
setCurrentIndex (0 );
568
568
569
569
while (count () > kMaxSearchEntries ) {
570
570
removeItem (kMaxSearchEntries );
571
571
}
572
+
573
+ // Set the text without spaces for UI
574
+ setTextBlockSignals (cText);
572
575
}
573
576
574
577
void WSearchLineEdit::slotMoveSelectedHistory (int steps) {
You can’t perform that action at this time.
0 commit comments