~ubuntu-branches/ubuntu/precise/gwibber/precise-proposed-201212050210

« back to all changes in this revision

Viewing changes to client/stream-entry.vala

  • Committer: Package Import Robot
  • Author(s): Ken VanDine
  • Date: 2012-01-30 10:55:24 UTC
  • mfrom: (1.1.67)
  • Revision ID: package-import@ubuntu.com-20120130105524-lvj9m771qldotvi4
Tags: 3.3.3-0ubuntu1
* New upstream release
  - Fixed memory leak in ActionBoxItem (LP: #909085)
  - Fixed race conditions in async image loading while scrolling (LP: #911619)
  - Hide window while gwibber exits (Michal Hruby)
  - Improved scrolling by enclosing comments and image previews in a 
    Gtk.Expander, this fixes the tiles resizing while scrolling (LP: #875348)
  - Ported to valac-0.16
* debian/control
  - build depend on valac-0.16 

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
public class StreamEntry : Gtk.Alignment
20
20
{
21
 
  private Gtk.VBox _vbox;
 
21
  private Gtk.Box _vbox;
22
22
  private Gtk.Alignment _align;
23
23
  public GwibberGtk.InputTextView text_view;
24
24
  private Gtk.Label _spacing;
61
61
  {
62
62
    set_reallocate_redraws (true);
63
63
 
64
 
    _vbox = new Gtk.VBox (false, 0);
 
64
    _vbox = new Gtk.Box (Gtk.Orientation.VERTICAL, 0);
65
65
    add (_vbox);
66
66
 
67
67
    _align = new Gtk.Alignment (0.0f, 0.0f, 1.0f, 1.0f);
68
 
    _align.set_padding (18, 18, 18, 18);
 
68
    _align.set_padding (18, 22, 18, 18);
69
69
    _vbox.pack_start (_align, false, false, 0);
70
70
 
71
 
    var box = new Gtk.VBox (false, 4);
 
71
    var box = new Gtk.Box (Gtk.Orientation.VERTICAL, 4);
72
72
    _align.add (box);
73
73
    _service = new Gwibber.Service ();
74
74
 
121
121
    color.alpha = 1.0f;
122
122
    text_view.override_color (Gtk.StateFlags.SELECTED, color);
123
123
    
124
 
    var hbox = new Gtk.HBox (false, 12);
 
124
    var hbox = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 12);
125
125
    box.pack_start (hbox, false, false, 0);
126
126
 
127
127
    private = new Gtk.Image.from_icon_name ("status_lock", Gtk.IconSize.MENU);