diff options
author | Lioncash <mathew1800@gmail.com> | 2021-01-13 07:20:20 -0500 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2021-01-13 07:29:59 -0500 |
commit | 0d7de7c2db27a3763ae3c2654928a3afc90e0b2b (patch) | |
tree | 3c0c193979733579dc2de046282b9d635ea0011f /src/yuzu/game_list.cpp | |
parent | 99d2d770624a341c529fc89726951079dd45c651 (diff) |
yuzu: Migrate off of setMargin() to setContentsMargins()
setMargin() has been deprecated since Qt 5, and replaced with
setContentsMargins(). We can move over to setContentsMargins() to stay
forward-compatible with Qt 6.0.
Diffstat (limited to 'src/yuzu/game_list.cpp')
-rw-r--r-- | src/yuzu/game_list.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/game_list.cpp b/src/yuzu/game_list.cpp index 70d865112..37b0d1a0e 100644 --- a/src/yuzu/game_list.cpp +++ b/src/yuzu/game_list.cpp @@ -119,7 +119,7 @@ void GameListSearchField::setFocus() { GameListSearchField::GameListSearchField(GameList* parent) : QWidget{parent} { auto* const key_release_eater = new KeyReleaseEater(parent, this); layout_filter = new QHBoxLayout; - layout_filter->setMargin(8); + layout_filter->setContentsMargins(8, 8, 8, 8); label_filter = new QLabel; label_filter->setText(tr("Filter:")); edit_filter = new QLineEdit; |