Name the devtool window

When the devtool widget is invoked with "window", it appears in its own
window. Currently the window title is "qutebrowser", preventing
dedicated compositor configuration. We fix this by naming it
"Web Inspector".
This commit is contained in:
Willow Barraco 2025-07-17 11:07:28 +02:00
parent 961b4a212d
commit acb7d12bcf
No known key found for this signature in database
GPG Key ID: EABA44759877E02A
1 changed files with 1 additions and 0 deletions

View File

@ -158,6 +158,7 @@ class AbstractWebInspector(QWidget):
self._position = position
self._widget.show()
self.setWindowTitle("Web Inspector")
self.show()
def toggle(self) -> None: