From 727b6ba81a3aef83c3fd5f3173e56146467af653 Mon Sep 17 00:00:00 2001 From: spycrab Date: Wed, 27 Jun 2018 14:10:53 +0200 Subject: [PATCH] Qt/GameList: Fix empty columns showing up when they should get hidden --- Source/Core/DolphinQt2/GameList/GameList.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/DolphinQt2/GameList/GameList.cpp b/Source/Core/DolphinQt2/GameList/GameList.cpp index 427f6acc59..74ef2447a0 100644 --- a/Source/Core/DolphinQt2/GameList/GameList.cpp +++ b/Source/Core/DolphinQt2/GameList/GameList.cpp @@ -614,6 +614,8 @@ void GameList::OnHeaderViewChanged() block = true; + UpdateColumnVisibility(); + // So here's the deal: Qt's way of resizing stuff around stretched columns sucks ass // That's why instead of using Stretch, we'll just make resizable columns take all the available // space ourselves!