We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c5fcfa commit 89c821fCopy full SHA for 89c821f
sourcecodebrowser/plugin.py
@@ -11,7 +11,7 @@
11
DATA_DIR = os.path.join(os.path.dirname(__file__), 'data')
12
ICON_DIR = os.path.join(DATA_DIR, 'icons', '16x16')
13
14
-class SourceTree(Gtk.VBox):
+class SourceTree(Gtk.Box):
15
"""
16
Source Tree Widget
17
@@ -23,7 +23,8 @@ class SourceTree(Gtk.VBox):
23
}
24
25
def __init__(self):
26
- Gtk.VBox.__init__(self)
+ Gtk.Box.__init__(self)
27
+ self.set_orientation(Gtk.Orientation.VERTICAL)
28
self._log = logging.getLogger(self.__class__.__name__)
29
self._log.setLevel(LOG_LEVEL)
30
self._pixbufs = {}
0 commit comments