mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Settings: emit HideCursorChanged()
This commit is contained in:
@ -213,6 +213,17 @@ QSize Settings::GetRenderWindowSize() const
|
||||
return value(QStringLiteral("Graphics/RenderWindowSize"), QSize(640, 480)).toSize();
|
||||
}
|
||||
|
||||
void Settings::SetHideCursor(bool hide_cursor)
|
||||
{
|
||||
SConfig::GetInstance().bHideCursor = hide_cursor;
|
||||
emit HideCursorChanged();
|
||||
}
|
||||
|
||||
bool Settings::GetHideCursor() const
|
||||
{
|
||||
return SConfig::GetInstance().bHideCursor;
|
||||
}
|
||||
|
||||
bool& Settings::BannerVisible() const
|
||||
{
|
||||
return SConfig::GetInstance().m_showBannerColumn;
|
||||
|
Reference in New Issue
Block a user