mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Debugger: Add a Network widget
Display socket table, SSL context and options
This commit is contained in:
@ -422,6 +422,20 @@ bool Settings::IsMemoryVisible() const
|
||||
return QSettings().value(QStringLiteral("debugger/showmemory")).toBool();
|
||||
}
|
||||
|
||||
void Settings::SetNetworkVisible(bool enabled)
|
||||
{
|
||||
if (IsNetworkVisible() == enabled)
|
||||
return;
|
||||
|
||||
GetQSettings().setValue(QStringLiteral("debugger/shownetwork"), enabled);
|
||||
emit NetworkVisibilityChanged(enabled);
|
||||
}
|
||||
|
||||
bool Settings::IsNetworkVisible() const
|
||||
{
|
||||
return GetQSettings().value(QStringLiteral("debugger/shownetwork")).toBool();
|
||||
}
|
||||
|
||||
void Settings::SetJITVisible(bool enabled)
|
||||
{
|
||||
if (IsJITVisible() == enabled)
|
||||
|
Reference in New Issue
Block a user