Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SOHViewer
Manage
Activity
Members
Labels
Plan
Issues
11
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
3
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software Public
PASSOFT
SOHViewer
Merge requests
!155
Convert pyside6
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Convert pyside6
convert_pyside6
into
master
Overview
0
Commits
22
Pipelines
6
Changes
38
Merged
Lan Dam
requested to merge
convert_pyside6
into
master
1 year ago
Overview
0
Commits
22
Pipelines
6
Changes
1
Expand
closes #48
Edited
1 year ago
by
Lan Dam
👍
0
👎
0
Merge request reports
Viewing commit
54cfc808
Prev
Next
Show latest version
1 file
+
0
−
11
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
54cfc808
remove setting environment variable QT_MAC_WANTS_LAYER to 1
· 54cfc808
Lan Dam
authored
1 year ago
sohstationviewer.py
+
0
−
11
Options
@@ -7,17 +7,6 @@ from PySide6 import QtWidgets
from
sohstationviewer.view.main_window
import
MainWindow
# Enable Layer-backing for MacOs version >= 11
# Only needed if using the pyside2 library with version>=5.15.
# Layer-backing is always enabled in pyside6.
os_name
,
version
,
*
_
=
platform
.
platform
().
split
(
'
-
'
)
# if os_name == 'macOS' and version >= '11':
# mac OSX 11.6 appear to be 10.16 when read with python and still required this
# environment variable
if
os_name
==
'
macOS
'
:
os
.
environ
[
'
QT_MAC_WANTS_LAYER
'
]
=
'
1
'
def
main
():
app
=
QtWidgets
.
QApplication
(
sys
.
argv
)
wnd
=
MainWindow
()
Loading