From 21185a44e723d016246af1b03a24ac787790106e Mon Sep 17 00:00:00 2001 From: Konstantinos Sideris Date: Sun, 15 Jul 2018 21:26:48 +0300 Subject: [PATCH] Properly reset the autocomplete anchor when the popup closes fixes #305 --- src/SuggestionsPopup.cpp | 6 ++++-- src/TextInputWidget.cc | 2 ++ src/dialogs/PreviewUploadOverlay.cc | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/SuggestionsPopup.cpp b/src/SuggestionsPopup.cpp index 82b7938b..bcfcb233 100644 --- a/src/SuggestionsPopup.cpp +++ b/src/SuggestionsPopup.cpp @@ -9,8 +9,8 @@ #include #include -constexpr int PopupHMargin = 5; -constexpr int PopupItemMargin = 4; +constexpr int PopupHMargin = 4; +constexpr int PopupItemMargin = 3; PopupItem::PopupItem(QWidget *parent) : QWidget(parent) @@ -23,6 +23,8 @@ PopupItem::PopupItem(QWidget *parent) topLayout_ = new QHBoxLayout(this); topLayout_->setContentsMargins( PopupHMargin, PopupItemMargin, PopupHMargin, PopupItemMargin); + + setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Fixed); } void diff --git a/src/TextInputWidget.cc b/src/TextInputWidget.cc index 7ee7fa16..bb72c533 100644 --- a/src/TextInputWidget.cc +++ b/src/TextInputWidget.cc @@ -217,6 +217,7 @@ FilteredTextEdit::keyPressEvent(QKeyEvent *event) auto word = cursor.selectedText(); if (cursor.position() == 0) { + resetAnchor(); closeSuggestions(); return; } @@ -231,6 +232,7 @@ FilteredTextEdit::keyPressEvent(QKeyEvent *event) emit showSuggestions(query()); } else { + resetAnchor(); closeSuggestions(); } diff --git a/src/dialogs/PreviewUploadOverlay.cc b/src/dialogs/PreviewUploadOverlay.cc index a4e31a7a..a3fe4228 100644 --- a/src/dialogs/PreviewUploadOverlay.cc +++ b/src/dialogs/PreviewUploadOverlay.cc @@ -70,7 +70,7 @@ PreviewUploadOverlay::init() winsize = window->frameGeometry().size(); center = window->frameGeometry().center(); } else { - nhlog::ui()->warn("unable to load the retrieve MainWindow's size"); + nhlog::ui()->warn("unable to retrieve MainWindow's size"); } fileName_.setText(QFileInfo{filePath_}.fileName());