~ubuntu-branches/ubuntu/quantal/indicator-session/quantal

« back to all changes in this revision

Viewing changes to src/user-widget.c

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher, Ken VanDine
  • Date: 2012-02-14 18:49:02 UTC
  • mfrom: (1.1.46)
  • Revision ID: package-import@ubuntu.com-20120214184902-uf9zw55ys3x2v7za
Tags: 0.3.91-0ubuntu1

* Backport "Don't lock the session when switching to another one"
  work from Robert Ancell, the screen locking is already done by 
  consolekit and enforcing it there is problematic to i.e use the 
  lightdm greeter as a lock screen (lp: #878836)
* debian/control:
  - recommends python-aptdaemon.pkcompat so packagekit doesn't get installed
* debian/source/format:
  - use v1, v3 doesn't play nicely with vcs backports

[ Ken VanDine ]
* New upstream release. (lp: #903756)
* debian/control
  - added new build depends on libpackagekit-glib2-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
136
136
  gtk_misc_set_padding (GTK_MISC(priv->user_image),0, 4.0);
137
137
  
138
138
  priv->user_name = gtk_label_new ("");
 
139
 
139
140
#if HAVE_GTK3
140
141
  priv->container = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
141
142
#else
142
143
  priv->container = gtk_hbox_new (FALSE, 0);
143
144
#endif
 
145
 
144
146
        priv->tick_icon = gtk_image_new_from_icon_name ("account-logged-in",
145
147
                                                   GTK_ICON_SIZE_MENU);
146
148
        gtk_misc_set_alignment(GTK_MISC(priv->tick_icon), 1.0, 0.5);