mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-15 16:56:14 +01:00
gobject_gdb.py: fix regression caused by bfbe7127d5
commit bfbe7127d5
which did a code refactor in
gobject_gdb.py introduced a bug by failing to
return the signal name when a signal had no
'detail', this was preventing pretty printing
name for signals with no 'detail'.
This commit is contained in:
parent
42203f089d
commit
0647121b38
@ -215,7 +215,7 @@ class SignalFrame(FrameDecorator):
|
|||||||
if detail is not None:
|
if detail is not None:
|
||||||
return signal + ":" + detail
|
return signal + ":" + detail
|
||||||
else:
|
else:
|
||||||
return detail
|
return signal
|
||||||
|
|
||||||
def function(self):
|
def function(self):
|
||||||
instances = []
|
instances = []
|
||||||
|
Loading…
Reference in New Issue
Block a user