fix python interpreter
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python
|
||||||
import os
|
import os
|
||||||
import platform
|
import platform
|
||||||
import sys
|
import sys
|
||||||
@@ -502,7 +502,7 @@ class General(ConfigWidget):
|
|||||||
def __init__(self, config):
|
def __init__(self, config):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
self.widgets['background_opacity'] = QtWidgets.QDoubleSpinBox()
|
self.widgets['background_opacity'] = QtWidgets.QDoubleSpinBox()
|
||||||
self.widgets['background_opacity'].setValue(config.get('background_opacity'))
|
self.widgets['background_opacity'].setValue(config.get('background_opacity') or 0)
|
||||||
self.widgets['cursor_style'] = QtWidgets.QComboBox()
|
self.widgets['cursor_style'] = QtWidgets.QComboBox()
|
||||||
for option in self.cursor_style_options:
|
for option in self.cursor_style_options:
|
||||||
self.widgets['cursor_style'].addItem(option)
|
self.widgets['cursor_style'].addItem(option)
|
||||||
|
Reference in New Issue
Block a user