• R/O
  • HTTP
  • SSH
  • HTTPS

提交

标签
No Tags

Frequently used words (click to add to your profile)

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

Commit MetaInfo

修订版8b2e8120b7437d689da1981c85a343cffe7fc3e7 (tree)
时间2020-09-05 22:01:09
作者Kazuhiro Fujieda <fujieda@user...>
CommiterKazuhiro Fujieda

Log Message

横長2のレイアウトでバケツ増減の表示位置がおかしいのを直す

更改概述

差异

--- a/KancolleSniffer/View/MainWindow/HqPanel.cs
+++ b/KancolleSniffer/View/MainWindow/HqPanel.cs
@@ -115,8 +115,6 @@ namespace KancolleSniffer.View.MainWindow
115115 protected override void OnParentChanged(EventArgs e)
116116 {
117117 base.OnParentChanged(e);
118- _bucketHistory.Location =
119- new Point(Location.X + Parent.Location.X + 100, Location.Y + Parent.Location.Y + 30);
120118 Parent.Controls.Add(_bucketHistory);
121119 }
122120
@@ -176,6 +174,7 @@ namespace KancolleSniffer.View.MainWindow
176174 }
177175 else
178176 {
177+ _bucketHistory.Location = new Point(Location.X + 100, Location.Y + 30);
179178 _bucketHistory.Visible = true;
180179 _bucketHistory.BringToFront();
181180 _bucketHistoryButton.BackColor = CustomColors.ActiveButtonColor;