fix: double margin (#4839)

order of the QMargins class differed from the old custom Margins class

Fixes #4838
This commit is contained in:
pajlada 2023-09-23 23:14:53 +02:00 committed by GitHub
parent 6860c7007e
commit 06eb30a50a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@
- Bugfix: Fixed selection of tabs after closing a tab when using "Live Tabs Only". (#4770)
- Bugfix: Fixed input in reply thread popup losing focus when dragging. (#4815)
- Bugfix: Fixed the Quick Switcher (CTRL+K) from sometimes showing up on the wrong window. (#4819)
- Bugfix: Fixed too much text being copied when copying chat messages. (#4812, #4830)
- Bugfix: Fixed too much text being copied when copying chat messages. (#4812, #4830, #4839)
- 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)

View file

@ -23,7 +23,7 @@
namespace {
constexpr const QMargins MARGIN{4, 8, 4, 8};
constexpr const QMargins MARGIN{8, 4, 8, 4};
} // namespace