Merge pull request #1148 from matham/open_once

Don't freeze when openning a modal view twice.
This commit is contained in:
Mathieu Virbel 2013-04-30 08:24:07 -07:00
commit 52cd37a84a
1 changed files with 3 additions and 0 deletions

View File

@ -166,6 +166,9 @@ class ModalView(AnchorLayout):
window, the view will attach to the global
:class:`~kivy.core.window.Window`.
'''
if self._window is not None:
Logger.warning('ModalView: you can only open once.')
return self
# search window
self._window = self._search_window()
if not self._window: