From 03ed1489dca528e40a2018efa07d925d1624eb8b Mon Sep 17 00:00:00 2001 From: Bryan Schumaker Date: Sun, 24 Oct 2010 17:25:31 -0400 Subject: [PATCH] Move forward button Move the forward button so it is next to the rewind button. --- ocarina/info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ocarina/info.py b/ocarina/info.py index aa2cb57f..14359f42 100644 --- a/ocarina/info.py +++ b/ocarina/info.py @@ -60,10 +60,10 @@ class InfoBar(Bar): self.pack(label.TimeLabel()) self.pack(label.LengthLabel2()) self.pack(button.RewindButton()) + self.pack(button.ForwardButton()) self.pack(button.PlayButton()) self.pack(button.PauseButton()) self.pack(button.StopButton()) - self.pack(button.ForwardButton()) self.pack(button.NextButton()) self.pack(button.UpButton(up_button))