• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revision39ad8ca175eb445bb136dafdedfd2d0b8a6fab8c (tree)
Time2012-03-13 16:21:15
Authorqwerty2501 <qwerty2501@user...>
Commiterqwerty2501

Log Message

ボタン表示処理変更

Change Summary

Incremental Difference

Binary files a/nlite.suo and b/nlite.suo differ
--- a/nlite/nlite_commentWrite.cpp
+++ b/nlite/nlite_commentWrite.cpp
@@ -470,10 +470,13 @@ end:
470470 VOID CCommentWriteWindow::ChangeSize(SIZE &size){
471471
472472 SIZE commentAnonymousButtonSize;
473+ RECT commentAnonymousButtonRect;
473474 SIZE commentWriteButtonSize;
474- commentWriteButton.GetIdealSize(&commentWriteButtonSize);
475- anonymousButton.GetIdealSize(&commentAnonymousButtonSize);
476475
476+ commentWriteButton.GetIdealSize(&commentWriteButtonSize);
477+ anonymousButton.GetClientRect(&commentAnonymousButtonRect);
478+ commentAnonymousButtonSize.cx = commentAnonymousButtonRect.right - commentAnonymousButtonRect.left;
479+ commentAnonymousButtonSize.cy = commentAnonymousButtonRect.bottom - commentAnonymousButtonRect.top;
477480
478481 UINT_PTR defwindowCount = 0;
479482 RECT commentPosBoxRect;
--- a/pull.bat
+++ b/pull.bat
@@ -1,4 +1,4 @@
11 cd /d %nlite%
22
3-cmd /c git pull privateForge master
3+cmd /c git pull origin master
44 pause