Created
October 16, 2013 15:35
-
-
Save amalgamatedclyde/7009760 to your computer and use it in GitHub Desktop.
popup attaches to window behind all other widgets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def build(self): | |
l= Builder.load_file('grd7.kv') | |
m= Builder.load_file('studentlist3.kv') | |
carousel = Carousel(direction='right') | |
carousel.add_widget(l) | |
carousel.add_widget(m) | |
popup = Popup(title='Please select a waypoint', | |
content = Button(text='close window'), | |
size_hint=(None, None), size=(400, 400)) | |
#carousel.add_widget(popup, 1000) | |
popup.open() | |
#print 'ids are', m.ids | |
self.m = m | |
self.l = l | |
return carousel |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment