Skip to content

Commit

Permalink
Mac ffmpeg stylesheet path変更
Browse files Browse the repository at this point in the history
  • Loading branch information
CSReviser committed Jan 21, 2023
1 parent 617d7f6 commit 9ddb527
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -345,13 +345,13 @@ void MainWindow::settings( enum ReadWriteMode mode ) {
#endif
#ifdef QT4_QT5_MAC
saved = settings.value( SETTING_MAINWINDOW_POSITION );
if ( saved.type() == QVariant::Invalid )
if ( saved.type() == QVariant::Invalid ) {
move( 70, 22 );
QRect rect = geometry();
rect.setHeight( rect.height() );
rect.moveTop( rect.top() );
setGeometry( rect );
else {
} else {
QSize windowSize = size();
move( saved.toPoint() );
resize( windowSize );
Expand Down

0 comments on commit 9ddb527

Please sign in to comment.