diff options
author | Seth Hitefield <sdhitefield@gmail.com> | 2017-05-03 07:06:54 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2017-05-03 07:07:59 -0700 |
commit | 486e0a9d06e43f3b8669471bef13a5eeedbda4c6 (patch) | |
tree | 7d35c5e7fd530f7ff420b9d3bb77ff5fc9fb2ecf /grc/gui/ParamWidgets.py | |
parent | 97b842874193394285ca4cdc11da381647c285fd (diff) |
grc: gtk3: Converted actions to Gio.Action instead of Gtk.Action
Diffstat (limited to 'grc/gui/ParamWidgets.py')
-rw-r--r-- | grc/gui/ParamWidgets.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/gui/ParamWidgets.py b/grc/gui/ParamWidgets.py index b56eace402..71cb1b7a7d 100644 --- a/grc/gui/ParamWidgets.py +++ b/grc/gui/ParamWidgets.py @@ -25,7 +25,7 @@ from . import Utils style_provider = Gtk.CssProvider() -style_provider.load_from_data(""" +style_provider.load_from_data(b""" #dtype_complex { background-color: #3399FF; } #dtype_real { background-color: #FF8C69; } #dtype_float { background-color: #FF8C69; } |