fix: update input size on tab-completion (#6411)

This commit is contained in:
nerix
2025-08-23 12:08:29 +02:00
committed by GitHub
parent c2cc9f33c9
commit 195776d4b7
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -65,6 +65,7 @@
- Bugfix: Fixed command triggers showing as '/...' when the value is longer than the column width. (#6369)
- Bugfix: Fixed a crash that could occur when making HTTP requests from a timeout handler. (#6375)
- Bugfix: Fixed a setting description not filtering correctly on search. (#6389)
- Bugfix: Fixed the split input not updating its height upon tab-completion. (#6411)
- Dev: Mini refactor of Split. (#6148)
- Dev: Conan will no longer generate a `CMakeUserPresets.json` file. (#6117)
- Dev: Pass `--force-openssl` when installing from CMake in Qt 6.8+. (#6129)
+1
View File
@@ -301,6 +301,7 @@ void ResizingTextEdit::insertCompletion(const QString &completion)
prefixSize);
tc.insertText(completion);
this->setTextCursor(tc);
this->updateGeometry();
}
bool ResizingTextEdit::canInsertFromMimeData(const QMimeData *source) const