diff options
author | René Schümann <white06tiger@gmail.com> | 2014-12-25 00:42:45 +0000 |
---|---|---|
committer | René Schümann <white06tiger@gmail.com> | 2014-12-25 00:42:45 +0000 |
commit | 1b725b0b97a2c3d5a2a1f097ce88eede1971adce (patch) | |
tree | 21046ebed0c8af9e19e2c7fa564bee407cd87092 /plugins/SendScreenshotPlus/src/UAboutForm.cpp | |
parent | a85ba257880bbb9e8180f7c77ea6f98b88386152 (diff) |
SendSS
! removed window icon as we have our own in our headerbar and two just looks stupid (we got a smaller close button in exchange though...)
* ESC now closes SendSS capture and about window (to compensate our new tiny "x" button)
git-svn-id: http://svn.miranda-ng.org/main/trunk@11616 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SendScreenshotPlus/src/UAboutForm.cpp')
-rw-r--r-- | plugins/SendScreenshotPlus/src/UAboutForm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/SendScreenshotPlus/src/UAboutForm.cpp b/plugins/SendScreenshotPlus/src/UAboutForm.cpp index 9cf6d42cd3..6b64f50203 100644 --- a/plugins/SendScreenshotPlus/src/UAboutForm.cpp +++ b/plugins/SendScreenshotPlus/src/UAboutForm.cpp @@ -147,8 +147,8 @@ LRESULT TfrmAbout::wmCommand(WPARAM wParam, LPARAM lParam) { //--------------------------------------------------------------------------- if (HIWORD(wParam) == BN_CLICKED) { switch(LOWORD(wParam)) { - case IDCANCEL: - case IDCLOSE: + case IDCANCEL: // ESC pressed + this->Close(); break; case IDA_btnClose: Close(); |