[vlc-commits] [Git][videolan/vlc][master] 2 commits: qt: use modern style in first run wizard
Steve Lhomme (@robUx4)
gitlab at videolan.org
Sat Nov 23 12:56:22 UTC 2024
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
f8c73c87 by Fatih Uzunoglu at 2024-11-23T12:42:17+00:00
qt: use modern style in first run wizard
- - - - -
7f8e5f06 by Fatih Uzunoglu at 2024-11-23T12:42:17+00:00
qt: use modern style in sout dialog wizard
- - - - -
2 changed files:
- modules/gui/qt/dialogs/firstrun/firstrunwizard.cpp
- modules/gui/qt/dialogs/sout/sout.cpp
Changes:
=====================================
modules/gui/qt/dialogs/firstrun/firstrunwizard.cpp
=====================================
@@ -40,6 +40,10 @@ FirstRunWizard::FirstRunWizard( qt_intf_t *_p_intf, QWidget *parent)
setWindowTitle( qtr( "Welcome" ) );
setWindowModality( Qt::WindowModal );
+ // NOTE: Aero style seems to be incompatible with
+ // Qt Modern Windows Style dark mode
+ setWizardStyle(QWizard::ModernStyle);
+
/* Build the Ui */
ui.setupUi( this );
=====================================
modules/gui/qt/dialogs/sout/sout.cpp
=====================================
@@ -43,6 +43,10 @@ SoutDialog::SoutDialog( QWindow *parent, qt_intf_t *_p_intf, const QString& inpu
setWindowTitle( qtr( "Stream Output" ) );
setWindowRole( "vlc-stream-output" );
+ // NOTE: Aero style seems to be incompatible with
+ // Qt Modern Windows Style dark mode
+ setWizardStyle(QWizard::ModernStyle);
+
QVLCDialog::setWindowTransientParent(this, parent , p_intf);
/* UI stuff */
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/ca4af7b742de9f2de39eaaf993dff11b9159225f...7f8e5f06e84034ff2abf51770937921bc51a381f
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/ca4af7b742de9f2de39eaaf993dff11b9159225f...7f8e5f06e84034ff2abf51770937921bc51a381f
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list