mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-06-19 10:44:49 +02: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
03aa8513f8
commit
1a19095a36
@ -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…
x
Reference in New Issue
Block a user