mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-16 13:14:51 -04:00
--User changes
-Add variations filter/selection dialog. --Bug fixes -Fix summary window not properly indicating the presence of pose affine. -Remove a file named Fractorium.aps which had been erroneously committed a year ago. --Code changes -Use qobject_cast instead of dynamic_cast where appropriate. -Add more override keyword where appropriate. -Add variations list to settings for filter dialog.
This commit is contained in:
@ -77,7 +77,7 @@ public:
|
||||
uint Strips();
|
||||
FinalRenderGuiState State();
|
||||
|
||||
public Q_SLOTS:
|
||||
public slots:
|
||||
void MoveCursorToEnd();
|
||||
void OnEarlyClipCheckBoxStateChanged(int state);
|
||||
void OnYAxisUpCheckBoxStateChanged(int state);
|
||||
@ -104,10 +104,10 @@ public Q_SLOTS:
|
||||
void OnFinalRenderSuffixChanged(const QString& s);
|
||||
void OnRenderClicked(bool checked);
|
||||
void OnCancelRenderClicked(bool checked);
|
||||
virtual void reject() override;
|
||||
|
||||
protected:
|
||||
virtual void reject();
|
||||
virtual void showEvent(QShowEvent* e);
|
||||
virtual void showEvent(QShowEvent* e) override;
|
||||
|
||||
private:
|
||||
bool CreateControllerFromGUI(bool createRenderer);
|
||||
|
Reference in New Issue
Block a user