fix: set initial size of widgets (#5794)

This commit is contained in:
nerix
2025-01-12 13:29:23 +01:00
committed by GitHub
parent 7dbb27e22e
commit 3cf56669c5
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -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
+1
View File
@@ -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();