Skip to content

Commit

Permalink
Update qt.py return transparent to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
bigbruno authored Nov 28, 2024
1 parent 9723a82 commit af7ebc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bigbashview/usr/lib/bbv/ui/qt.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ def style(self, colorful):
self.web.page().setBackgroundColor(QColor.fromRgbF(0, 0, 0, 1))
elif colorful == "transparent":
self.setAttribute(Qt.WA_TranslucentBackground)
self.web.page().setBackgroundColor(QColor.fromRgbF(0, 0, 0, 0.01))
self.web.page().setBackgroundColor(QColor.fromRgbF(0, 0, 0, 0))
self.setStyleSheet("background:transparent;")
elif os.environ.get('XDG_CURRENT_DESKTOP') == 'KDE':
rgb = os.popen("kreadconfig5 --group WM --key activeBackground").read().split(',')
Expand Down

0 comments on commit af7ebc6

Please sign in to comment.