mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-28 14:02:38 +00:00
IR widget is now a rectangle
This commit is contained in:
parent
d07e212cef
commit
a8d482d8e1
11 changed files with 218 additions and 50 deletions
|
@ -3,14 +3,16 @@
|
|||
// Refer to the license.txt file included.
|
||||
|
||||
#include "DolphinQt2/TAS/StickWidget.h"
|
||||
#include "Common/CommonTypes.h"
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
#include <QMouseEvent>
|
||||
#include <QPainter>
|
||||
|
||||
#include <algorithm>
|
||||
#include "Common/CommonTypes.h"
|
||||
|
||||
StickWidget::StickWidget(QWidget* parent, u16 max_x, u16 max_y) : QWidget(parent), m_max_x(max_x), m_max_y(max_y)
|
||||
StickWidget::StickWidget(QWidget* parent, u16 max_x, u16 max_y)
|
||||
: QWidget(parent), m_max_x(max_x), m_max_y(max_y)
|
||||
{
|
||||
setMouseTracking(false);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue