2009-04-06 11 views
3

私はドキュメントを見回しましたが、何も見つかりませんでした。Shoesアプリをフルスクリーンで表示する方法はありますか?ソース・コード内で探しおそらく何かのような全画面靴のアプリケーションですか?

..

Shoes.app :fullscreen => true do 
    para "test" 
end 

は、次の行は、(とりわけ) "フルスクリーン" に言及:

shoes/app.c:58: app->fullscreen = FALSE; 
shoes/native/cocoa.m:851: if (app->fullscreen) { 
shoes/native/gtk.c:557: if (app->fullscreen) 
shoes/native/cocoa.m:872:shoes_native_app_fullscreen(shoes_app *app, char yn) 
shoes/native/windows.c:934: if (app->fullscreen) 
shoes/native/windows.c:935: style = WINDOW_STYLE_FULLSCREEN; 

すべてのようです..soそこに、ちょうど:fullscreen => trueをしても効果がないようですか?

答えて

4

中にエラーが、質問で引用app->fullscreenコードがない現行2/Raisinsリリース、最新の開発コードからだった。..

$ git co 2/Raisins 
HEAD is now at 42dda8a... * bugs: closing some bugs, moving others to the next release. 
$ grep -r -i fullscreen * 
[nothing] 
$ git co master 
Switched to branch "master" 
$ grep -r -i fullscreen * 
shoes/app.c: app->fullscreen = FALSE; 
[...] 

:fullscreenは、次のバージョンで動作します!

関連する問題