Skip to content

Commit af7ebc6

Browse files
authored
Update qt.py return transparent to 0
1 parent 9723a82 commit af7ebc6

File tree

1 file changed

+1
-1
lines changed
  • bigbashview/usr/lib/bbv/ui

1 file changed

+1
-1
lines changed

bigbashview/usr/lib/bbv/ui/qt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ def style(self, colorful):
289289
self.web.page().setBackgroundColor(QColor.fromRgbF(0, 0, 0, 1))
290290
elif colorful == "transparent":
291291
self.setAttribute(Qt.WA_TranslucentBackground)
292-
self.web.page().setBackgroundColor(QColor.fromRgbF(0, 0, 0, 0.01))
292+
self.web.page().setBackgroundColor(QColor.fromRgbF(0, 0, 0, 0))
293293
self.setStyleSheet("background:transparent;")
294294
elif os.environ.get('XDG_CURRENT_DESKTOP') == 'KDE':
295295
rgb = os.popen("kreadconfig5 --group WM --key activeBackground").read().split(',')

0 commit comments

Comments
 (0)