@@ -156,6 +156,7 @@ def __init__(self, flist=None, filename=None, key=None, root=None):
156156 'name' : 'text' ,
157157 'padx' : 5 ,
158158 'wrap' : 'none' ,
159+ 'highlightthickness' : 0 ,
159160 'width' : self .width ,
160161 'height' : idleConf .GetOption ('main' , 'EditorWindow' ,
161162 'height' , type = 'int' )}
@@ -380,13 +381,15 @@ def home_callback(self, event):
380381
381382 def set_status_bar (self ):
382383 self .status_bar = self .MultiStatusBar (self .top )
384+ sep = Frame (self .top , height = 1 , borderwidth = 1 , background = 'grey75' )
383385 if sys .platform == "darwin" :
384386 # Insert some padding to avoid obscuring some of the statusbar
385387 # by the resize widget.
386388 self .status_bar .set_label ('_padding1' , ' ' , side = RIGHT )
387389 self .status_bar .set_label ('column' , 'Col: ?' , side = RIGHT )
388390 self .status_bar .set_label ('line' , 'Ln: ?' , side = RIGHT )
389391 self .status_bar .pack (side = BOTTOM , fill = X )
392+ sep .pack (side = BOTTOM , fill = X )
390393 self .text .bind ("<<set-line-and-column>>" , self .set_line_and_column )
391394 self .text .event_add ("<<set-line-and-column>>" ,
392395 "<KeyRelease>" , "<ButtonRelease>" )
0 commit comments