• 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

dev


Commit MetaInfo

Revision27a68c31e7f603dac8207e94add1c89b14b4f8a2 (tree)
Time2014-01-16 05:56:50
Authorspx <spx268@gmai...>
Commiterspx

Log Message

ツイート選択時にサムネイル枠のスクロールバー選択位置を初期化するように修正
複数画像を持つツイート間を移動した際に、スクロールバーの選択位置を維持してしまうため

Change Summary

Incremental Difference

--- a/OpenTween/TweetThumbnail.cs
+++ b/OpenTween/TweetThumbnail.cs
@@ -111,8 +111,6 @@ namespace OpenTween
111111 cancelToken.ThrowIfCancellationRequested();
112112 }
113113
114- this.scrollBar.Maximum = thumbnails.Count - 1;
115-
116114 if (thumbnails.Count > 1)
117115 this.scrollBar.Enabled = true;
118116
@@ -206,8 +204,6 @@ namespace OpenTween
206204 {
207205 this.SuspendLayout();
208206
209- this.scrollBar.Maximum = count;
210-
211207 this.panelPictureBox.Controls.Clear();
212208 foreach (var picbox in this.pictureBox)
213209 {
@@ -219,6 +215,9 @@ namespace OpenTween
219215 }
220216 this.pictureBox.Clear();
221217
218+ this.scrollBar.Maximum = (count > 0) ? count - 1 : 0;
219+ this.scrollBar.Value = 0;
220+
222221 for (int i = 0; i < count; i++)
223222 {
224223 var picbox = CreatePictureBox("pictureBox" + i);