mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-10-23 08:29:47 +00:00
Qt: Add OnScreenDisplayPane to settings window. Transfer OSD options to pane.
This commit is contained in:
parent
03ef9b4995
commit
13ac387197
5 changed files with 305 additions and 0 deletions
|
@ -22,6 +22,7 @@
|
|||
#include "DolphinQt/Settings/GameCubePane.h"
|
||||
#include "DolphinQt/Settings/GeneralPane.h"
|
||||
#include "DolphinQt/Settings/InterfacePane.h"
|
||||
#include "DolphinQt/Settings/OnScreenDisplayPane.h"
|
||||
#include "DolphinQt/Settings/PathPane.h"
|
||||
#include "DolphinQt/Settings/WiiPane.h"
|
||||
|
||||
|
@ -129,6 +130,7 @@ SettingsWindow::SettingsWindow(MainWindow* parent) : StackedSettingsWindow{paren
|
|||
AddPane(new GraphicsPane{parent, nullptr}, tr("Graphics"));
|
||||
AddWrappedPane(new ControllersPane, tr("Controllers"));
|
||||
AddWrappedPane(new InterfacePane, tr("Interface"));
|
||||
AddWrappedPane(new OnScreenDisplayPane, tr("On-Screen Display"));
|
||||
AddWrappedPane(new AudioPane, tr("Audio"));
|
||||
AddWrappedPane(new PathPane, tr("Paths"));
|
||||
AddWrappedPane(new GameCubePane, tr("GameCube"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue