summaryrefslogtreecommitdiffstats
path: root/src/extension/extension.cpp
diff options
context:
space:
mode:
authorNicolas Dufour <nicoduf@yahoo.fr>2010-09-07 21:11:53 +0000
committerJazzyNico <nicoduf@yahoo.fr>2010-09-07 21:11:53 +0000
commit58e76e40aa940d05606412f232d179e867334455 (patch)
tree356e52968dc3f9bbc137fb6fb1ce99d1ec8ba1cc /src/extension/extension.cpp
parentConnected two toolbar buttons with the associated verbs (diff)
downloadinkscape-58e76e40aa940d05606412f232d179e867334455.tar.gz
inkscape-58e76e40aa940d05606412f232d179e867334455.zip
Extensions. General UI improvements (gnome HIG). New group header extension parameter.
(bzr r9748)
Diffstat (limited to 'src/extension/extension.cpp')
-rw-r--r--src/extension/extension.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extension/extension.cpp b/src/extension/extension.cpp
index 3aed5a233..caed62735 100644
--- a/src/extension/extension.cpp
+++ b/src/extension/extension.cpp
@@ -669,7 +669,7 @@ public:
*/
void addWidget (Gtk::Widget * widg, gchar const * tooltip) {
if (widg == NULL) return;
- this->pack_start(*widg, true, true, 2);
+ this->pack_start(*widg, false, false, 2);
if (tooltip != NULL) {
_tooltips.set_tip(*widg, Glib::ustring(_(tooltip)));
}