From 43f14c73019f2165f714151d996b70be955b7d18 Mon Sep 17 00:00:00 2001 From: Nerixyz Date: Mon, 23 Oct 2023 20:48:34 +0200 Subject: [PATCH 1/2] fix: disable clickable headers --- src/widgets/helper/EditableModelView.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/widgets/helper/EditableModelView.cpp b/src/widgets/helper/EditableModelView.cpp index 97c6840b8d4..20a618bd704 100644 --- a/src/widgets/helper/EditableModelView.cpp +++ b/src/widgets/helper/EditableModelView.cpp @@ -26,6 +26,7 @@ EditableModelView::EditableModelView(QAbstractTableModel *model, bool movable) this->tableView_->setDragDropOverwriteMode(false); this->tableView_->setDefaultDropAction(Qt::DropAction::MoveAction); this->tableView_->verticalHeader()->setVisible(false); + this->tableView_->horizontalHeader()->setSectionsClickable(false); // create layout QVBoxLayout *vbox = new QVBoxLayout(this); From ad5a8092348821c2484062a76111a405059a1c7e Mon Sep 17 00:00:00 2001 From: Nerixyz Date: Mon, 23 Oct 2023 20:56:05 +0200 Subject: [PATCH 2/2] chore: add changelog entry --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a4874d95a2..8b3681fae0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ - Bugfix: Fixed the input completion popup from disappearing when clicking on it on Windows and macOS. (#4876) - Bugfix: Fixed double-click text selection moving its position with each new message. (#4898) - Bugfix: Fixed an issue where notifications on Windows would contain no or an old avatar. (#4899) +- Bugfix: Fixed headers of tables in the settings switching to bold text when selected. (#4913) - Dev: Fixed UTF16 encoding of `modes` file for the installer. (#4791) - Dev: Temporarily disable High DPI scaling on Qt6 builds on Windows. (#4767) - Dev: Tests now run on Ubuntu 22.04 instead of 20.04 to loosen C++ restrictions in tests. (#4774)