diff options
| author | MenTaLguY <mental@rydia.net> | 2008-07-02 01:45:20 +0000 |
|---|---|---|
| committer | mental <mental@users.sourceforge.net> | 2008-07-02 01:45:20 +0000 |
| commit | daa044a4dee55534c1b2bd1775af4741b6e9f8ff (patch) | |
| tree | 72bd67fdbd3cb10922d5c7a1813dcf163c01a9d7 /src/dialogs/layers-panel.cpp | |
| parent | missed a spot (diff) | |
| download | inkscape-daa044a4dee55534c1b2bd1775af4741b6e9f8ff.tar.gz inkscape-daa044a4dee55534c1b2bd1775af4741b6e9f8ff.zip | |
add tab to layers dialog
(bzr r6114)
Diffstat (limited to 'src/dialogs/layers-panel.cpp')
| -rw-r--r-- | src/dialogs/layers-panel.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/dialogs/layers-panel.cpp b/src/dialogs/layers-panel.cpp index d54fb6fc7..7863e19f1 100644 --- a/src/dialogs/layers-panel.cpp +++ b/src/dialogs/layers-panel.cpp @@ -732,10 +732,13 @@ LayersPanel::LayersPanel() : _watching.push_back( &_compositeSettings ); - _getContents()->pack_start( _scroller, Gtk::PACK_EXPAND_WIDGET ); + _layersPage.pack_start( _scroller, Gtk::PACK_EXPAND_WIDGET ); + _layersPage.pack_end(_compositeSettings, Gtk::PACK_SHRINK); + _layersPage.pack_end(_buttonsRow, Gtk::PACK_SHRINK); - _getContents()->pack_end(_compositeSettings, Gtk::PACK_SHRINK); - _getContents()->pack_end(_buttonsRow, Gtk::PACK_SHRINK); + _notebook.append_page(_layersPage, _("Layers")); + + _getContents()->pack_start(_notebook, Gtk::PACK_EXPAND_WIDGET); SPDesktop* targetDesktop = getDesktop(); |
