Skip to content

Commit

Permalink
Update Render Output Dialog #325
Browse files Browse the repository at this point in the history
  • Loading branch information
rodlie committed Nov 25, 2024
1 parent 2d18831 commit eb1263f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/ui/dialogs/renderoutputwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@

RenderOutputWidget::RenderOutputWidget(const int canvasWidth,
const int canvasHeight,
QWidget *parent) : QDialog(parent) {
QWidget *parent)
: Friction::Ui::Dialog(parent)
{
mCanvasWidth = canvasWidth;
mCanvasHeight = canvasHeight;

Expand Down
5 changes: 4 additions & 1 deletion src/ui/dialogs/renderoutputwidget.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@
#include <QComboBox>
#include <QSpinBox>

class UI_EXPORT RenderOutputWidget : public QDialog {
#include "dialog.h"

class UI_EXPORT RenderOutputWidget : public Friction::Ui::Dialog
{
Q_OBJECT
public:
explicit RenderOutputWidget(const int canvasWidth,
Expand Down

0 comments on commit eb1263f

Please sign in to comment.