Browse Source

Unicode

master
Pete Shadbolt 9 years ago
parent
commit
0e70d7488c
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      main.py

+ 3
- 1
main.py View File

@@ -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)


Loading…
Cancel
Save