Skip to content

Commit

Permalink
Merge pull request #1268 from justincui/justincui-patch-1
Browse files Browse the repository at this point in the history
solve the blank main window issue with PyQt5 on RHEL9.
  • Loading branch information
r0x0r authored Nov 23, 2023
2 parents 2d1833d + 995ee78 commit c878f66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webview/platforms/qt.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
is_webengine = False
renderer = 'qtwebkit'

if is_webengine and QtCore.QSysInfo.productType() in ['arch', 'manjaro', 'nixos']:
if is_webengine and QtCore.QSysInfo.productType() in ['arch', 'manjaro', 'nixos','rhel']:
# I don't know why, but it's a common solution for #890 (White screen displayed)
# such as:
# - https://github.com/LCA-ActivityBrowser/activity-browser/pull/954/files
Expand Down

0 comments on commit c878f66

Please sign in to comment.