mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-24 06:39:53 -06:00
Fix fullscreen when using 'Show Title Bar' (#150)
This commit is contained in:
@ -1776,6 +1776,7 @@ namespace Ryujinx.Ava.UI.ViewModels
|
||||
if (WindowState is not WindowState.Normal)
|
||||
{
|
||||
WindowState = WindowState.Normal;
|
||||
Window.TitleBar.ExtendsContentIntoTitleBar = !ConfigurationState.Instance.ShowTitleBar;
|
||||
|
||||
if (IsGameRunning)
|
||||
{
|
||||
@ -1785,6 +1786,7 @@ namespace Ryujinx.Ava.UI.ViewModels
|
||||
else
|
||||
{
|
||||
WindowState = WindowState.FullScreen;
|
||||
Window.TitleBar.ExtendsContentIntoTitleBar = true;
|
||||
|
||||
if (IsGameRunning)
|
||||
{
|
||||
|
Reference in New Issue
Block a user