mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2024-11-22 19:28:09 -06:00
More fixes.
This commit is contained in:
parent
9fbbd29c3b
commit
6c5e529129
@ -131,7 +131,7 @@ class other_buffers(wx.Panel):
|
|||||||
return False
|
return False
|
||||||
if current <= 0:
|
if current <= 0:
|
||||||
output.speak("The buffer is already at the top of the list.",True)
|
output.speak("The buffer is already at the top of the list.",True)
|
||||||
return false
|
return False
|
||||||
#not implemented
|
#not implemented
|
||||||
def move_down(self, *args, **kwargs):
|
def move_down(self, *args, **kwargs):
|
||||||
current = self.buffers.get_selected()
|
current = self.buffers.get_selected()
|
||||||
@ -143,7 +143,7 @@ class other_buffers(wx.Panel):
|
|||||||
return False
|
return False
|
||||||
if current >= self.buffers.get_count():
|
if current >= self.buffers.get_count():
|
||||||
output.speak("The buffer is already at the bottom of the list.",True)
|
output.speak("The buffer is already at the bottom of the list.",True)
|
||||||
return false
|
return False
|
||||||
#not implemented
|
#not implemented
|
||||||
|
|
||||||
def get_event(self, ev):
|
def get_event(self, ev):
|
||||||
|
Loading…
Reference in New Issue
Block a user