Skip to content

Commit

Permalink
switch to fusion style!
Browse files Browse the repository at this point in the history
  • Loading branch information
toloudis committed Feb 19, 2024
1 parent 98081f4 commit bfceba7
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 7 deletions.
6 changes: 0 additions & 6 deletions agave_app/Controls.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -247,12 +247,6 @@ QDoubleSlider::wheelEvent(QWheelEvent* event)
QSlider::wheelEvent(event);
}

QSize
QDoubleSpinner::sizeHint() const
{
return QSize(50, 20);
}

QDoubleSpinner::QDoubleSpinner(QWidget* pParent /*= NULL*/)
: QDoubleSpinBox(pParent)
{
Expand Down
1 change: 0 additions & 1 deletion agave_app/Controls.h
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ class QDoubleSpinner : public QDoubleSpinBox
public:
QDoubleSpinner(QWidget* pParent = NULL);

virtual QSize sizeHint() const;
void setValue(double Value, bool BlockSignals = false);

protected:
Expand Down
1 change: 1 addition & 0 deletions agave_app/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ main(int argc, char* argv[])

QApplication::setAttribute(Qt::AA_UseDesktopOpenGL);
QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
QApplication::setStyle("fusion");
QApplication a(argc, argv);
a.setOrganizationName("Allen Institute for Cell Science");
a.setOrganizationDomain("allencell.org");
Expand Down

0 comments on commit bfceba7

Please sign in to comment.