[hyena/gtk3] ListViewTestModule: revert change accidentally added in e4412af0



commit fe543a612804c37ba63e65bec813fa3ad3cf5658
Author: Andrés G. Aragoneses <knocte gmail com>
Date:   Sat Aug 17 20:14:39 2013 +0200

    ListViewTestModule: revert change accidentally added in e4412af0
    
    This commit from Bertrand [1] included an accidental change to
    ListViewTestModule that made the ListView shown in "make hg"
    have less rows, which is not good for scrollbars showcase.
    
    [1] https://git.gnome.org/browse/hyena/commit/?h=gtk3&id=e4412af083b0e11d993bb4660650a9e7485769c6

 Hyena.Gui/Hyena.Data.Gui/ListViewTestModule.cs |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/Hyena.Gui/Hyena.Data.Gui/ListViewTestModule.cs b/Hyena.Gui/Hyena.Data.Gui/ListViewTestModule.cs
index f137a0f..62978b2 100644
--- a/Hyena.Gui/Hyena.Data.Gui/ListViewTestModule.cs
+++ b/Hyena.Gui/Hyena.Data.Gui/ListViewTestModule.cs
@@ -169,7 +169,7 @@ namespace Hyena.Data.Gui.Tests
         public Model ()
         {
             Random random = new Random (0);
-            for (int i = 0; i < 10; i++) {
+            for (int i = 0; i < 1000; i++) {
                 store.Add (new ModelItem (i, random));
             }
         }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]