@@ -2396,6 +2396,7 @@ def __init__(self, title, parent=None):
2396
2396
wx .Frame .__init__ (self , parent = parent , title = title )
2397
2397
self .Show ()
2398
2398
2399
+
2399
2400
class WAILStatusBar (wx .StatusBar ):
2400
2401
def __init__ (self , parent ):
2401
2402
wx .StatusBar .__init__ (self , parent , - 1 )
@@ -2404,7 +2405,7 @@ def __init__(self, parent):
2404
2405
self .SetFieldsCount (2 )
2405
2406
self .SetStatusWidths ([- 2 , 30 ])
2406
2407
self .sb_button = wx .Button (
2407
- self , wx .ID_ANY , "" , style = wx .BU_EXACTFIT | wx .BORDER_NONE
2408
+ self , wx .ID_ANY , "" , style = wx .BU_EXACTFIT | wx .BORDER_NONE
2408
2409
)
2409
2410
2410
2411
self .msg = ''
@@ -2432,18 +2433,19 @@ def press_button(self, _):
2432
2433
if local_wayback_accessible :
2433
2434
self .msg = config .text_statusbar_no_captures
2434
2435
elif self .msg == config .text_statusbar_wayback_not_running :
2435
- self .msg = config .text_statusbar_fixing_wayback
2436
+ self .msg = config .text_statusbar_fixing_wayback
2436
2437
2437
- Wayback ().fix (self .press_button )
2438
- pub .sendMessage ('recheck_uri_in_basic_interface' )
2439
- return
2438
+ Wayback ().fix (self .press_button )
2439
+ pub .sendMessage ('recheck_uri_in_basic_interface' )
2440
+ return
2440
2441
else :
2441
2442
self .msg = config .text_statusbar_wayback_not_running
2442
2443
2443
2444
pub .sendMessage ('change_statusbar' , msg = self .msg ,
2444
2445
includes_local = local_wayback_accessible )
2445
2446
pass
2446
2447
2448
+
2447
2449
class InvalidSelectionContextException (Exception ):
2448
2450
"""raise when attempt to create a context menu without context"""
2449
2451
0 commit comments