mirror of
https://github.com/huderlem/porymap.git
synced 2026-09-14 03:45:35 -05:00
Expose new settings, add tabs to settings editor
This commit is contained in:
@@ -64,4 +64,15 @@ signals:
|
||||
void textChanged(const QString &text);
|
||||
};
|
||||
|
||||
class UIntHexSpinBox : public UIntSpinBox
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
UIntHexSpinBox(QWidget *parent = nullptr) : UIntSpinBox(parent) {
|
||||
this->setPrefix("0x");
|
||||
this->setDisplayIntegerBase(16);
|
||||
this->setHasPadding(true);
|
||||
}
|
||||
};
|
||||
|
||||
#endif // UINTSPINBOX_H
|
||||
|
||||
Reference in New Issue
Block a user