~glitter-team/glitter/trunk

« back to all changes in this revision

Viewing changes to glitter/tests/test_scroll_area.py

  • Committer: Jan Jokela
  • Date: 2009-05-12 17:08:05 UTC
  • mto: (38.2.2 trunk)
  • mto: This revision was merged to the branch mainline in revision 25.
  • Revision ID: jan@jan-laptop-20090512170805-jw2qtp149hj5i4v6
(glitter/tests/*) Added and improved a bunch of tests; (glitter/data/themes/nublo/styles/label.json) Fixes in label widget style; (glitter/box.py) Layout code fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
import os
11
11
import sys
12
12
 
13
 
import pygtk
14
 
pygtk.require('2.0')
15
 
import gtk
16
 
 
17
 
import clutter
18
 
 
19
13
# Change sys path to glitter path
20
14
glitter_path = os.path.split(sys.path[0])[0]
21
15
sys.path[0] = glitter_path
22
16
 
23
17
from window import Window
 
18
 
 
19
import gtk
 
20
 
24
21
from scroll_area import ScrollArea
25
22
from label import Label
26
23