Merge lp:~avlabs314/cable/cable into lp:cable

Proposed by Auroral Xylon
Status: Merged
Merged at revision: 28
Proposed branch: lp:~avlabs314/cable/cable
Merge into: lp:cable
Diff against target: 20 lines (+5/-2)
1 file modified
src/Widgets/Room.vala (+5/-2)
To merge this branch: bzr merge lp:~avlabs314/cable/cable
Reviewer Review Type Date Requested Status
Eduard Gotwig Pending
Review via email: mp+165796@code.launchpad.net

Description of the change

Made the topic entry fill the window so that the topic is displayed better.

To post a comment you must log in.
lp:~avlabs314/cable/cable updated
28. By Eduard Gotwig <email address hidden>

mission complete. Topic loading works reliable

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/Widgets/Room.vala'
2--- src/Widgets/Room.vala 2013-05-26 13:13:17 +0000
3+++ src/Widgets/Room.vala 2013-05-26 19:38:25 +0000
4@@ -73,11 +73,14 @@
5 chat.get_style_context ().add_provider (css, 40000);
6
7 topic_name.set_text(_("Loading Topic..."));
8- topic_name.halign = Gtk.Align.START;
9+ topic_name.halign = Gtk.Align.FILL;
10+ topic_name.valign = Gtk.Align.FILL;
11
12 topic_item.add (topic_name);
13 topic_item.set_expand (true);
14- topic.insert (topic_item, -1);
15+ topic_item.halign = Gtk.Align.FILL;
16+ topic_item.valign = Gtk.Align.FILL;
17+ topic.insert (topic_item, 0);
18 topic.get_style_context ().add_class ("seconday-toolbar");
19
20 operators = new Granite.Widgets.SourceList.ExpandableItem (_("Operators"));

Subscribers

People subscribed via source and target branches

to all changes: