mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 06:08:50 +00:00
Qt/TAS: Improve TAS windows
- Use the Dolphin Icon in TAS Windows - Prevent deformation of the stick widget (#11988) - Improve visual appearance - Set a reasonable minimum size
This commit is contained in:
parent
2d6a72e941
commit
29c7c12016
3 changed files with 36 additions and 18 deletions
|
@ -17,6 +17,7 @@
|
|||
|
||||
#include "DolphinQt/QtUtils/AspectRatioWidget.h"
|
||||
#include "DolphinQt/QtUtils/QueueOnObject.h"
|
||||
#include "DolphinQt/Resources.h"
|
||||
#include "DolphinQt/TAS/StickWidget.h"
|
||||
#include "DolphinQt/TAS/TASCheckBox.h"
|
||||
#include "DolphinQt/TAS/TASInputWindow.h"
|
||||
|
@ -26,6 +27,8 @@
|
|||
TASInputWindow::TASInputWindow(QWidget* parent) : QDialog(parent)
|
||||
{
|
||||
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
||||
setWindowIcon(Resources::GetAppIcon());
|
||||
|
||||
m_use_controller = new QCheckBox(QStringLiteral("Enable Controller Inpu&t"));
|
||||
m_use_controller->setToolTip(tr("Warning: Analog inputs may reset to controller values at "
|
||||
"random. In some cases this can be fixed by adding a deadzone."));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue