From a22e13a32a39388769d8cb325447bc5296452b22 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Mon, 27 Jun 2016 16:28:48 -0400 Subject: [PATCH] remove Separator widget since it wasn't really seen anyway --- simplesvnbrowser/main_window.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/simplesvnbrowser/main_window.py b/simplesvnbrowser/main_window.py index 6adfb5b..652eb98 100644 --- a/simplesvnbrowser/main_window.py +++ b/simplesvnbrowser/main_window.py @@ -57,8 +57,6 @@ class MainWindow(Gtk.Window): bottom_hbox = Gtk.Box() self.directory_vbox = Gtk.Box(orientation = Gtk.Orientation.VERTICAL) bottom_hbox.pack_start(self.directory_vbox, False, True, 0) - separator = Gtk.Separator(orientation = Gtk.Orientation.VERTICAL) - bottom_hbox.pack_start(separator, False, True, 0) bottom_hbox.pack_start(contents_scrolledwindow, True, True, 0) vbox.pack_start(bottom_hbox, True, True, 0)