summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWill Thompson <will@willthompson.co.uk>2018-10-22 09:38:59 +0000
committerWill Thompson <will@willthompson.co.uk>2018-10-22 09:38:59 +0000
commit5d71614024ca849a7ccb6fab1b9c09538d4bb7ab (patch)
tree2d596760ab03b56b1e3f1527ac49ad4e1dac7fec /src
parentbb184b541aa34884fca4a7cd9043131b2c303cc9 (diff)
parent89c29b82d8fe53224dc791904c09e68e7c568b5e (diff)
downloadd-feet-5d71614024ca849a7ccb6fab1b9c09538d4bb7ab.tar.gz
Merge branch 'correctly-honour-theme-foreground-colour-2' into 'master'
Correctly honour theme foreground colour See merge request GNOME/d-feet!12
Diffstat (limited to 'src')
-rw-r--r--src/dfeet/introspection_helper.py20
1 files changed, 2 insertions, 18 deletions
diff --git a/src/dfeet/introspection_helper.py b/src/dfeet/introspection_helper.py
index b718c1a..74789f5 100644
--- a/src/dfeet/introspection_helper.py
+++ b/src/dfeet/introspection_helper.py
@@ -1,31 +1,15 @@
# -*- coding: utf-8 -*-
-from gi.repository import GObject, Gio, Gtk
+from gi.repository import GObject, Gio
from dfeet import dbus_utils
-_style_context = None
-_fg_color = "#000000"
-
-
-def fg_color():
- global _style_context, _fg_color
- if _style_context is None:
- _style_context = Gtk.StyleContext()
- color = _style_context.get_color(Gtk.StateFlags.NORMAL)
- _fg_color = "#%02x%02x%02x" % (
- int(color.red) * 255,
- int(color.green) * 255,
- int(color.blue) * 255,
- )
- return _fg_color
-
def args_signature_markup(arg_signature):
return '<small><span foreground="#2E8B57">%s</span></small>' % (arg_signature)
def args_name_markup(arg_name):
- return '<small><span foreground="%s">%s</span></small>' % (fg_color(), arg_name)
+ return '<small>%s</small>' % (arg_name,)
class DBusNode(GObject.GObject):