Skip to content

Commit 2f69718

Browse files
committed
Add fix for keeping search history clean
1 parent 72286cb commit 2f69718

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/widget/wsearchlineedit.cpp

+5-2
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ void WSearchLineEdit::slotTriggerSearch() {
543543
/// saves the current query as selection
544544
void WSearchLineEdit::slotSaveSearch() {
545545
m_saveTimer.stop();
546-
QString cText = currentText();
546+
QString cText = currentText(); // Keep original text with spaces for UI
547547
int cIndex = findCurrentTextIndex();
548548
#if ENABLE_TRACE_LOG
549549
kLogger.trace()
@@ -562,13 +562,16 @@ void WSearchLineEdit::slotSaveSearch() {
562562
}
563563
if (cIndex > 0 || cIndex == -1) {
564564
// 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());
566566
}
567567
setCurrentIndex(0);
568568

569569
while (count() > kMaxSearchEntries) {
570570
removeItem(kMaxSearchEntries);
571571
}
572+
573+
// Set the text without spaces for UI
574+
setTextBlockSignals(cText);
572575
}
573576

574577
void WSearchLineEdit::slotMoveSelectedHistory(int steps) {

0 commit comments

Comments
 (0)