• R/O
  • SSH
  • HTTPS

Commit

Frequently used words (click to add to your profile)

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

密猟オンラインクライアントプログラム JAVAベース


Commit MetaInfo

Revision8 (tree)
Time2016-01-27 23:50:12
Authormanjihq

Log Message

表示フォントの調整

Change Summary

Incremental Difference

--- trunk/src/hunton/HuntStatusView.java (revision 7)
+++ trunk/src/hunton/HuntStatusView.java (revision 8)
@@ -38,7 +38,7 @@
3838 hungryMesg[2] = Hunt.getBundle().getString("HUNGRYMESG_2");
3939 hungryMesg[3] = Hunt.getBundle().getString("HUNGRYMESG_3");
4040 hungryMesg[4] = Hunt.getBundle().getString("HUNGRYMESG_4");
41- setFont(new Font(Font.MONOSPACED, Font.PLAIN, 16));
41+ setFont(new Font(Font.MONOSPACED, Font.PLAIN, 14));
4242 }
4343
4444 @Override
--- trunk/src/hunton/HuntMessageView.java (revision 7)
+++ trunk/src/hunton/HuntMessageView.java (revision 8)
@@ -13,10 +13,10 @@
1313 super(Hunt.getBundle().getString("TITLE_MESSAGE"));
1414 messageList = new TextArea(10, 80);
1515 messageList.setEditable(false);
16- messageList.setFont(new Font(Font.MONOSPACED, Font.PLAIN, 16));
16+ messageList.setFont(new Font(Font.MONOSPACED, Font.PLAIN, 14));
1717 add(messageList, BorderLayout.CENTER);
1818 editWnd = new TextField();
19- editWnd.setFont(new Font(Font.MONOSPACED, Font.PLAIN, 16));
19+ editWnd.setFont(new Font(Font.MONOSPACED, Font.PLAIN, 14));
2020 add(editWnd, BorderLayout.SOUTH);
2121 editWnd.addActionListener(this);
2222 setResizable(true);
--- trunk/src/hunton/HuntLoginWnd.java (revision 7)
+++ trunk/src/hunton/HuntLoginWnd.java (revision 8)
@@ -27,7 +27,7 @@
2727 addWindowListener(new HuntLoginWndEvent());
2828 setLayout(layout);
2929
30- setFont(new Font(Font.MONOSPACED, Font.PLAIN, 16));
30+ setFont(new Font(Font.MONOSPACED, Font.PLAIN, 14));
3131
3232 gridbag.anchor = GridBagConstraints.WEST;
3333 gridbag.fill = GridBagConstraints.NONE;