Skip to content

Commit

Permalink
pyjamas not Pyjamas
Browse files Browse the repository at this point in the history
git-svn-id: https://pyjamas.svn.sourceforge.net/svnroot/pyjamas/trunk@3 7a2bd370-bda8-463c-979e-2900ccfb811e
  • Loading branch information
lkcl committed Sep 15, 2008
1 parent 04ee480 commit 1362e20
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 15 deletions.
12 changes: 0 additions & 12 deletions examples/f

This file was deleted.

4 changes: 2 additions & 2 deletions examples/kitchensink/KitchenSink.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from Pyjamas.ui import Button, RootPanel, HTML, DockPanel, HasAlignment, Hyperlink, VerticalPanel
from Pyjamas import Window
from pyjamas.ui import Button, RootPanel, HTML, DockPanel, HasAlignment, Hyperlink, VerticalPanel
from pyjamas import Window
from SinkList import SinkList
from History import History
import Info
Expand Down
2 changes: 1 addition & 1 deletion library/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -2597,7 +2597,7 @@ def setSelectedIndex(self, index):

def selectValue(self, value):
for n in range(self.getItemCount()):
if self.getValue(n) == value:
if self.getItemText(n) == value:
self.setSelectedIndex(n)
return n
return None
Expand Down

0 comments on commit 1362e20

Please sign in to comment.