mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-06-01 16:23:17 +00:00
Adding Refresh icon to toolbar (#816)
This commit is contained in:
parent
13743b27fc
commit
16363ac692
3 changed files with 8 additions and 0 deletions
|
@ -38,6 +38,7 @@ public:
|
|||
QPushButton* playButton;
|
||||
QPushButton* pauseButton;
|
||||
QPushButton* stopButton;
|
||||
QPushButton* refreshButton;
|
||||
QPushButton* settingsButton;
|
||||
QPushButton* controllerButton;
|
||||
|
||||
|
@ -176,6 +177,10 @@ public:
|
|||
stopButton->setFlat(true);
|
||||
stopButton->setIcon(QIcon(":images/stop_icon.png"));
|
||||
stopButton->setIconSize(QSize(40, 40));
|
||||
refreshButton = new QPushButton(centralWidget);
|
||||
refreshButton->setFlat(true);
|
||||
refreshButton->setIcon(QIcon(":images/refresh_icon.png"));
|
||||
refreshButton->setIconSize(QSize(32, 32));
|
||||
settingsButton = new QPushButton(centralWidget);
|
||||
settingsButton->setFlat(true);
|
||||
settingsButton->setIcon(QIcon(":images/settings_icon.png"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue