Skip to content

Commit

Permalink
fix: set initial size of widgets (Chatterino#5794)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nerixyz authored Jan 12, 2025
1 parent 7dbb27e commit 3cf5666
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
- Bugfix: Fixed a crash relating to Lua HTTP. (#5800)
- Bugfix: Fixed a crash that could occur on Linux and macOS when clicking "Install" from the update prompt. (#5818)
- Bugfix: Fixed missing word wrap in update popup. (#5811)
- Bugfix: Fixed tabs not scaling to the default scale when changing the scale from a non-default value. (#5794)
- Dev: Updated Conan dependencies. (#5776)

## 2.5.2
Expand Down
1 change: 1 addition & 0 deletions src/widgets/BaseWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ namespace chatterino {
BaseWidget::BaseWidget(QWidget *parent, Qt::WindowFlags f)
: QWidget(parent, f)
, theme(getApp()->getThemes())
, scale_(this->scale())
{
this->signalHolder_.managedConnect(this->theme->updated, [this]() {
this->themeChangedEvent();
Expand Down

0 comments on commit 3cf5666

Please sign in to comment.