We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
main.cppにてInitializeTaskBWindow()をした後、Activateしているが、この段階ではInitializeMouse()が実行されていない。(mouse_layer_は 0 ) layer.cppのActivate()の以下の行で > manager_.UpDown(active_layer_, manager_.GetHeight(mouse_layer_) - 1); 第二引数にmouse_layer_を使用しているが、値がゼロのためTaskBWindowレイヤーの高さがマイナス値になってしまい、ウィンドウが非表示になっています。 解決策として、上記の一行をInitializeMouse();の下に移動すれば、TaskBWindowが消えなくなります。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
main.cppにてInitializeTaskBWindow()をした後、Activateしているが、この段階ではInitializeMouse()が実行されていない。(mouse_layer_は 0 )
layer.cppのActivate()の以下の行で
> manager_.UpDown(active_layer_, manager_.GetHeight(mouse_layer_) - 1);
第二引数にmouse_layer_を使用しているが、値がゼロのためTaskBWindowレイヤーの高さがマイナス値になってしまい、ウィンドウが非表示になっています。
解決策として、上記の一行をInitializeMouse();の下に移動すれば、TaskBWindowが消えなくなります。
The text was updated successfully, but these errors were encountered: