Skip to content

Commit

Permalink
fix: margin change
Browse files Browse the repository at this point in the history
order of the QMargins class differed from the old custom Margins class

Fixes #4838
  • Loading branch information
pajlada committed Sep 23, 2023
1 parent 6860c70 commit 4bb4812
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/messages/layouts/MessageLayoutContainer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

namespace {

constexpr const QMargins MARGIN{4, 8, 4, 8};
constexpr const QMargins MARGIN{8, 4, 8, 4};

} // namespace

Expand Down

0 comments on commit 4bb4812

Please sign in to comment.