[egg-list-box] Test scrolled listbox not at top
- From: Alexander Larsson <alexl src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [egg-list-box] Test scrolled listbox not at top
- Date: Mon, 21 May 2012 12:41:36 +0000 (UTC)
commit eb56153b25f6f66017e7c921dae98306aec3180e
Author: Alexander Larsson <alexl redhat com>
Date: Mon May 21 14:40:57 2012 +0200
Test scrolled listbox not at top
test-scrolled.vala | 9 ++++++++-
1 files changed, 8 insertions(+), 1 deletions(-)
---
diff --git a/test-scrolled.vala b/test-scrolled.vala
index 669b91e..994e554 100644
--- a/test-scrolled.vala
+++ b/test-scrolled.vala
@@ -59,9 +59,16 @@ main (string[] args) {
var scrolled = new ScrolledWindow (null, null);
scrolled.set_policy (PolicyType.NEVER, PolicyType.AUTOMATIC);
hbox.add (scrolled);
+
+ var scrolled_box = new Box(Orientation.VERTICAL, 0);
+ scrolled.add_with_viewport (scrolled_box);
+
+ var label = new Label ("This is \na LABEL\nwith rows");
+ scrolled_box.add (label);
var list = new ListBox();
- list.add_to_scrolled (scrolled);
+ scrolled_box.add (list);
+ list.set_adjustment (scrolled.get_vadjustment ());
for (int i = 0; i < num_rows; i++) {
var row = new Row ();
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]