X-Git-Url: http://git.maemo.org/git/?p=watersofshiloah;a=blobdiff_plain;f=src%2Fwindows%2Fsource.py;h=fee997ca3524de57a50728b467ababac821d22aa;hp=42737f40541fbacd6f948f9f3bbefd8f3fdb459f;hb=48395f16da1ee02cec1eea38c46072c1fd957a16;hpb=305d76e7ff66c6e1c003d24d39e6b293cb8344c1;ds=sidebyside diff --git a/src/windows/source.py b/src/windows/source.py index 42737f4..fee997c 100644 --- a/src/windows/source.py +++ b/src/windows/source.py @@ -5,6 +5,7 @@ import gtk import constants import util.misc as misc_utils +import hildonize import banners import presenter import stream_index @@ -111,8 +112,9 @@ class SourceSelector(windows._base.BasicWindow): elif node.id == stream_index.SOURCE_SCRIPTURES: Source = windows.scriptures.ScripturesWindow sourceWindow = Source(self._app, self._player, self._store, node) - sourceWindow.window.set_modal(True) - sourceWindow.window.set_transient_for(self._window) + if not hildonize.IS_FREMANTLE_SUPPORTED: + sourceWindow.window.set_modal(True) + sourceWindow.window.set_transient_for(self._window) sourceWindow.window.set_default_size(*self._window.get_size()) if self._windowInFullscreen: sourceWindow.window.fullscreen()