mirror of https://github.com/PCSX2/pcsx2.git
FullscreenUI: Get rid of extra scrollbar in save state selector
This commit is contained in:
parent
815e5d952d
commit
410e950da6
|
@ -5289,7 +5289,8 @@ void FullscreenUI::DrawSaveStateSelector(bool is_loading)
|
||||||
|
|
||||||
bool close_handled = false;
|
bool close_handled = false;
|
||||||
if (s_save_state_selector_open &&
|
if (s_save_state_selector_open &&
|
||||||
ImGui::BeginChild("state_list", ImVec2(io.DisplaySize.x, io.DisplaySize.y - heading_size.y), false, ImGuiWindowFlags_NavFlattened))
|
ImGui::BeginChild("state_list", ImVec2(io.DisplaySize.x, io.DisplaySize.y - LayoutScale(LAYOUT_FOOTER_HEIGHT) - heading_size.y),
|
||||||
|
false, ImGuiWindowFlags_NavFlattened))
|
||||||
{
|
{
|
||||||
BeginMenuButtons();
|
BeginMenuButtons();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue