Commit efc08807 authored by Samuele Carcagno's avatar Samuele Carcagno
Browse files

use fusion style on windows

parent cd354755
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
1
 No newline at end of file
2
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "sound_source_id"
#define MyAppVersion "0.2.1"
#define MyAppVersion "0.2.2"
#define MyAppPublisher "Samuele Carcagno"
#define MyAppURL "https://samcarcagno.altervista.org/sound_source_id/sound_source_id.html"
#define MyAppExeName "sound_source_id.exe"
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "sound_source_id"
    version="0.2.1"
    version="0.2.2"

authors = [
  { name="Samuele Carcagno", email="sam.carcagno@gmail.com" },
+1 −1
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@ executables = [
]

setup(name='sound_source_id',
    version="0.2.1",
    version="0.2.2",
      description = '',
      options = {'build_exe': build_options},
      executables = executables)
+2 −0
Original line number Diff line number Diff line
@@ -1254,6 +1254,8 @@ def main():
    # instantiate the ApplicationWindow widget
    qApp.currentLocale = locale
    qApp.setApplicationName('sound_source_id')
    if platform.system() == "Windows":
        qApp.setStyle('Fusion')
    aw = applicationWindow(prm)


Loading