~ubuntu-branches/ubuntu/utopic/unity-greeter/utopic

« back to all changes in this revision

Viewing changes to src/main-window.vala

  • Committer: Package Import Robot
  • Author(s): Michael Terry
  • Date: 2013-01-04 10:37:29 UTC
  • mto: This revision was merged to the branch mainline in revision 51.
  • Revision ID: package-import@ubuntu.com-20130104103729-ydal31wfuhirb8zb
Tags: upstream-13.04.0
ImportĀ upstreamĀ versionĀ 13.04.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
105
105
        align.show ();
106
106
        hbox.add (align);
107
107
 
108
 
        back_button = new Gtk.Button ();
 
108
        back_button = new FlatButton ();
 
109
        back_button.focus_on_click = false;
109
110
        var image = new Gtk.Image.from_file (Path.build_filename (Config.PKGDATADIR, "arrow_left.png", null));
110
111
        image.show ();
111
112
        back_button.set_size_request (grid_size - GreeterList.BORDER * 2, grid_size - GreeterList.BORDER * 2);
112
113
        back_button.add (image);
113
 
        UnityGreeter.add_style_class (back_button);
114
114
        back_button.clicked.connect (pop_list);
115
115
        align.add (back_button);
116
116