mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
Debugger: Add a Network widget
Display socket table, SSL context and options
This commit is contained in:
parent
88ae4c7914
commit
5e33cd48da
14 changed files with 406 additions and 20 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue