Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
What's new
4
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Menu
Open sidebar
Inkscape
inkscape
Commits
51f3bb43
Commit
51f3bb43
authored
Apr 17, 2022
by
Nathan Lee
Committed by
Martin Owens
May 04, 2022
Browse files
Fix memory leak with CSS Selectors Dialog
parent
4d6403fe
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/ui/dialog/selectorsdialog.cpp
View file @
51f3bb43
...
...
@@ -330,7 +330,7 @@ void SelectorsDialog::_showWidgets()
_button_box
.
pack_end
(
*
_vertical
,
false
,
false
,
0
);
_del
.
signal_clicked
().
connect
(
sigc
::
mem_fun
(
*
this
,
&
SelectorsDialog
::
_delSelector
));
_del
.
hide
();
_style_dialog
=
new
StyleDialog
;
_style_dialog
=
Gtk
::
manage
(
new
StyleDialog
)
;
_style_dialog
->
set_name
(
"StyleDialog"
);
_paned
.
pack1
(
*
_style_dialog
,
Gtk
::
SHRINK
);
_paned
.
pack2
(
_selectors_box
,
true
,
true
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment