summaryrefslogtreecommitdiff
path: root/libxfce4ui/xfce-titled-dialog.c
diff options
context:
space:
mode:
authorSimon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>2020-01-05 23:43:05 +0100
committerSimon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>2020-01-09 23:31:37 +0100
commit7bc68535db2718dad3c62f83044e2189835853d4 (patch)
tree5fd7a76ac4a54a87a744a7f121fa3cfe203932a6 /libxfce4ui/xfce-titled-dialog.c
parent30d35f577119c8c48e5d08cedc7a1a480b751d36 (diff)
downloadlibxfce4ui-7bc68535db2718dad3c62f83044e2189835853d4.tar.gz
XfceTitledDialog: Make sure windows can be dragged
As the constructed function of GtkDialog's parent class (GtkWindow) is responsible for being able to move the window by dragging the headerbar, we need to hook it up.
Diffstat (limited to 'libxfce4ui/xfce-titled-dialog.c')
-rw-r--r--libxfce4ui/xfce-titled-dialog.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libxfce4ui/xfce-titled-dialog.c b/libxfce4ui/xfce-titled-dialog.c
index 5d55701..649112b 100644
--- a/libxfce4ui/xfce-titled-dialog.c
+++ b/libxfce4ui/xfce-titled-dialog.c
@@ -160,6 +160,7 @@ xfce_titled_dialog_constructor (GType type,
static void
xfce_titled_dialog_constructed (GObject *object)
{
+ G_OBJECT_CLASS (xfce_titled_dialog_parent_class)->constructed (object);
}