From 0e70d7488c2c428c8ce1a73e7cdb6ebb46e4a0d6 Mon Sep 17 00:00:00 2001 From: Pete Shadbolt Date: Thu, 22 Jan 2015 14:10:54 +0000 Subject: [PATCH] Unicode --- main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index 37508b2..b719ac3 100644 --- a/main.py +++ b/main.py @@ -1,3 +1,5 @@ +#!/usr/bin/python +# coding: utf-8 from libs.simpleosc import * import wx @@ -186,7 +188,7 @@ class Channel(wx.Panel): self.speed.SetValue(choices[0]) sizer.Add(self.speed, 0, wx.ALL | wx.EXPAND, 3) - choices = ["Live ->", "Live <->", "loop1.wav", "loop2.wav", "loop3.wav"] + choices = ["Live →", "Live ←", "Live ↔", "loop1.wav", "loop2.wav", "loop3.wav"] self.speed = wx.ComboBox(self, choices=choices, style=wx.CB_READONLY, size=(25, 25)) self.speed.SetValue(choices[0]) sizer.Add(self.speed, 0, wx.ALL | wx.EXPAND, 3)