• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

タグ
未設定

よく使われているワード(クリックで追加)

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

The MinGW.org Installation Manager Tool


コミットメタ情報

リビジョン35a592aca3b78bc0cebc234301a4a62cdf1f2285 (tree)
日時2013-07-26 19:18:59
作者Keith Marshall <keithmarshall@user...>
コミッターKeith Marshall

ログメッセージ

Make a minor GUI layout adjustment.

変更サマリ

差分

--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
1+2013-07-26 Keith Marshall <keithmarshall@users.sourceforge.net>
2+
3+ Make a minor GUI layout adjustment.
4+
5+ * src/pkgview.cpp (VSASH_INIT_POS): Increment from 0.30 to 0.35; this
6+ sets the initial height of the package list pane to be 35% of the main
7+ window height, which, at the default initial window size, neatly fits
8+ the entire "Basic Setup" package group, without scrolling, on my
9+ 1366x768 pixel Win7-VM display.
10+
111 2013-07-25 Keith Marshall <keithmarshall@users.sourceforge.net>
212
313 Implement setup tool installer "plugin".
--- a/src/pkgview.cpp
+++ b/src/pkgview.cpp
@@ -52,7 +52,7 @@ static const double HSASH_MAX_POS = 0.40;
5252 * measured from its top edge.
5353 */
5454 static const double VSASH_MIN_POS = 0.25;
55-static const double VSASH_INIT_POS = 0.30;
55+static const double VSASH_INIT_POS = 0.35;
5656 static const double VSASH_MAX_POS = 0.60;
5757
5858 HWND AppWindowMaker::Create( const char *class_name, const char *caption )