Skip to content

Instantly share code, notes, and snippets.

@amalgamatedclyde
Created October 16, 2013 15:35
Show Gist options
  • Save amalgamatedclyde/7009760 to your computer and use it in GitHub Desktop.
Save amalgamatedclyde/7009760 to your computer and use it in GitHub Desktop.
popup attaches to window behind all other widgets
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