This commit is contained in:
2026-01-06 01:54:40 +05:30
committed by ruiny
parent 802cb48201
commit 518147fa9a
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -2,7 +2,6 @@
## Unversioned
- Bugfix: Disable "Sort Tabs Alphabetically" action when notebook layout is locked. (#6704)
- Minor: Add a separate highlight option for watchstreak notifications. (#6571, #6581)
- Minor: Badges now link to their home page like emotes in the context menu. (#6437)
- Minor: Fixed usercard resizing improperly without recent messages. (#6496)
@@ -43,6 +42,7 @@
- Bugfix: Added `desktop-entry` hint to Linux notifications. (#6615)
- Bugfix: Fixed <kbd>CMD</kbd> + <kbd>DELETE</kbd> behavior in the user notes editing dialog for macOS. (#6676)
- Bugfix: Fixed a potential crash when closing Chatterino with a slow network connection. (#6645)
- Bugfix: Disable "Sort Tabs Alphabetically" action when notebook layout is locked. (#6710)
- Dev: Update release documentation. (#6498)
- Dev: Make code sanitizers opt in with the `CHATTERINO_SANITIZER_SUPPORT` CMake option. After that's enabled, use the `SANITIZE_*` flag to enable individual sanitizers. (#6493)
- Dev: Remove unused QTextCodec includes. (#6487)
+1 -1
View File
@@ -1640,7 +1640,7 @@ void SplitNotebook::forEachSplit(const std::function<void(Split *)> &cb)
void SplitNotebook::setLockNotebookLayout(bool value)
{
this->Notebook::setLockNotebookLayout(value);
Notebook::setLockNotebookLayout(value);
this->sortTabsAlphabeticallyAction_->setEnabled(!value);
}
+2 -2
View File
@@ -122,8 +122,6 @@ public:
// Update layout and tab visibility
void refresh();
void sortTabsAlphabetically();
protected:
bool getShowTabs() const;
void setShowTabs(bool value);
@@ -171,6 +169,8 @@ protected:
void performLayout(bool animate = false);
void sortTabsAlphabetically();
private:
struct LayoutContext {
int left = 0;