From 73635864292a9986efb9eb67d8abdddedb47e7e9 Mon Sep 17 00:00:00 2001 From: Kimura Youichi Date: Mon, 30 Nov 2015 14:07:49 +0900 Subject: [PATCH] =?utf8?q?Ctrl+Insert=E3=82=AD=E3=83=BC=E3=81=8CCtrl+C?= =?utf8?q?=E3=81=A8=E5=90=8C=E6=A7=98=E3=81=AE=E5=8B=95=E4=BD=9C=E3=82=92?= =?utf8?q?=E3=81=99=E3=82=8B=E3=82=88=E3=81=86=E3=81=AB=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit https://osdn.jp/projects/opentween/forums/28653/36126/ --- OpenTween/Resources/ChangeLog.txt | 1 + OpenTween/Tween.cs | 14 +++----------- 2 files changed, 4 insertions(+), 11 deletions(-) diff --git a/OpenTween/Resources/ChangeLog.txt b/OpenTween/Resources/ChangeLog.txt index 6c672a0e..14e0a13e 100644 --- a/OpenTween/Resources/ChangeLog.txt +++ b/OpenTween/Resources/ChangeLog.txt @@ -10,6 +10,7 @@ * CHG: プロフィール画面の「Web」「自己紹介」のURLを展開して表示するように変更 (thx @naminodarie!) * CHG: Foursquareのサムネイル表示機能でチェックインURLの仕様変更に対応 * CHG: 「APIコマンドを回避する」の機能を廃止 + * CHG: Ctrl+Insert キーで Ctrl+C と同じ機能が実行されるように変更 (Ctrl+Shift+Insert, Alt+Shift+Insert も同様) * FIX: Home/Endキーの直後に左右キーを押すと以前の選択ツイートの関連発言に移動してしまう不具合を修正 (thx @coookien!) * FIX: 発言詳細部のコンテキストメニューからURLのコピーを実行すると「&」が「&」としてコピーされる不具合を修正 (thx @pO_0q!) * FIX: タイムラインの流速が速い時に発言一覧のスクロールバーがちらつく現象を修正 diff --git a/OpenTween/Tween.cs b/OpenTween/Tween.cs index 83027b38..93349c35 100644 --- a/OpenTween/Tween.cs +++ b/OpenTween/Tween.cs @@ -6681,11 +6681,7 @@ namespace OpenTween .FocusedOn(FocusedControl.ListTab) .Do(() => this.GoNextTab(forward: false)), - ShortcutCommand.Create(Keys.Control | Keys.C) - .FocusedOn(FocusedControl.ListTab) - .Do(() => this.CopyStot()), - - ShortcutCommand.Create(Keys.Control | Keys.C) + ShortcutCommand.Create(Keys.Control | Keys.C, Keys.Control | Keys.Insert) .FocusedOn(FocusedControl.ListTab) .Do(() => this.CopyStot()), @@ -6908,7 +6904,7 @@ namespace OpenTween ShortcutCommand.Create(Keys.Control | Keys.Shift | Keys.R) .Do(() => this.MakeReplyOrDirectStatus(isAuto: false, isReply: true, isAll: true)), - ShortcutCommand.Create(Keys.Control | Keys.Shift | Keys.C) + ShortcutCommand.Create(Keys.Control | Keys.Shift | Keys.C, Keys.Control | Keys.Shift | Keys.Insert) .Do(() => this.CopyIdUri()), ShortcutCommand.Create(Keys.Control | Keys.Shift | Keys.F) @@ -7042,10 +7038,6 @@ namespace OpenTween .FocusedOn(FocusedControl.PostBrowser) .Do(() => this.doReTweetUnofficial()), - ShortcutCommand.Create(Keys.Alt | Keys.Shift | Keys.C) - .FocusedOn(FocusedControl.PostBrowser) - .Do(() => this.CopyUserId()), - ShortcutCommand.Create(Keys.Alt | Keys.Shift | Keys.T) .OnlyWhen(() => this.ExistCurrentPost) .Do(() => this.doTranslation(_curPost.TextFromApi)), @@ -7053,7 +7045,7 @@ namespace OpenTween ShortcutCommand.Create(Keys.Alt | Keys.Shift | Keys.R) .Do(() => this.doReTweetUnofficial()), - ShortcutCommand.Create(Keys.Alt | Keys.Shift | Keys.C) + ShortcutCommand.Create(Keys.Alt | Keys.Shift | Keys.C, Keys.Alt | Keys.Shift | Keys.Insert) .Do(() => this.CopyUserId()), ShortcutCommand.Create(Keys.Alt | Keys.Shift | Keys.Up) -- 2.11.0