~ubuntu-branches/ubuntu/quantal/shotwell/quantal

« back to all changes in this revision

Viewing changes to src/Page.vala

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2012-09-20 15:21:41 UTC
  • mfrom: (1.2.15)
  • Revision ID: package-import@ubuntu.com-20120920152141-lcfo2j5d8f3zs0c6
Tags: 0.13.0-0ubuntu1
* New upstream bugfix release
* debian/watch:
  - Watch for stable versions

Show diffs side-by-side

added added

removed removed

Lines of Context:
213
213
    }
214
214
 
215
215
    public virtual Gtk.Toolbar get_toolbar() {
216
 
        if (toolbar == null)
 
216
        if (toolbar == null) {
217
217
            toolbar = toolbar_path == null ? new Gtk.Toolbar() :
218
218
                                             ui.get_widget(toolbar_path) as Gtk.Toolbar;
 
219
            toolbar.get_style_context().add_class("bottom-toolbar");  // for elementary theme
 
220
        }
219
221
        return toolbar;
220
222
    }
221
223