mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-03 23:05:11 -04:00
--User changes
-Double clicking on width or height spinner resizes both, but scales to the one double clicked. --Bug fixes -Show grid setting was not being preserved during program run, only on close. -Zooming with the mouse wheel was broken for images whose size is greater than the screen area.
This commit is contained in:
@ -23,10 +23,15 @@ public:
|
||||
void SetValueStealth(size_t d);
|
||||
void DoubleClick(bool b);
|
||||
void DoubleClickLowVal(int val);
|
||||
int DoubleClickLowVal();
|
||||
void DoubleClickZero(int val);
|
||||
int DoubleClickZero();
|
||||
void DoubleClickNonZero(int val);
|
||||
int DoubleClickNonZero();
|
||||
void SmallStep(int step);
|
||||
QLineEdit* lineEdit();
|
||||
std::function<void(SpinBox*, int)> m_DoubleClickZeroEvent = [&](SpinBox*, int) {};
|
||||
std::function<void(SpinBox*, int)> m_DoubleClickNonZeroEvent = [&](SpinBox*, int) {};
|
||||
|
||||
public slots:
|
||||
void onSpinBoxValueChanged(int i);
|
||||
|
Reference in New Issue
Block a user