diff options
author | George Hazan <george.hazan@gmail.com> | 2023-11-14 16:51:00 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-11-14 16:51:00 +0300 |
commit | 7f350d178a8d15e7c8260c6e30f26670e5e813f3 (patch) | |
tree | 5031c60105073daab3232e9e30c9924fee48fb44 /plugins/NewStory | |
parent | d19d86665efa3dda7a16089d4f7bf469fe833aab (diff) |
NewStory: move focus to the entry field after quoting
Diffstat (limited to 'plugins/NewStory')
-rw-r--r-- | plugins/NewStory/src/history_control.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/NewStory/src/history_control.cpp b/plugins/NewStory/src/history_control.cpp index 74d1e76197..89003680bb 100644 --- a/plugins/NewStory/src/history_control.cpp +++ b/plugins/NewStory/src/history_control.cpp @@ -620,6 +620,8 @@ void NewstoryListData::Quote() CMStringW wszText(GatherSelected(true)); RemoveBbcodes(wszText); pMsgDlg->SetMessageText(Srmm_Quote(wszText)); + + SetFocus(pMsgDlg->GetInput()); } } |