~kelemeng/gwibber/bug926665

« back to all changes in this revision

Viewing changes to libgwibber-gtk/entry.vala

  • Committer: Ken VanDine
  • Date: 2012-01-21 04:43:41 UTC
  • mfrom: (1243.1.1 gtk3_4_deprecations)
  • Revision ID: ken.vandine@canonical.com-20120121044341-tm5sm2fymcl1ahuu
fixed alignment of the send button and padding tweaks

Show diffs side-by-side

added added

removed removed

Lines of Context:
368
368
            count = new Gtk.Label ("");
369
369
            count.set_markup ("<b>" + MAX_MESSAGE_LENGTH.to_string () + "</b>");
370
370
            box.pack_end(count, false, false, 0);
371
 
            add(box);
 
371
            pack_start (box, true, true, 0);
372
372
            send.set_sensitive (conn_service.is_connected ());
373
373
            conn_service.connection_changed.connect((source) => {
374
374
                    on_connection_changed (source);});