diff options
author | René Schümann <white06tiger@gmail.com> | 2013-12-18 04:49:51 +0000 |
---|---|---|
committer | René Schümann <white06tiger@gmail.com> | 2013-12-18 04:49:51 +0000 |
commit | 3789398cf28c074cc25c9595c3ee6f353877310f (patch) | |
tree | a8c3bbc9f42ec22a12c5f971a2231051e9d24d9a /plugins/SendScreenshotPlus | |
parent | c39ab885bd9a01f6c8ac9e2099b2985ddcaef329 (diff) |
v0.8.3.1
* improved description text for desktop screens
from “Screenshot of "<entire desktop>” Window" to “Screenshot of "<Entire Desktop>"”
still not perfect, but better then before :P
git-svn-id: http://svn.miranda-ng.org/main/trunk@7271 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SendScreenshotPlus')
-rw-r--r-- | plugins/SendScreenshotPlus/src/UMainForm.cpp | 5 | ||||
-rw-r--r-- | plugins/SendScreenshotPlus/src/version.h | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/plugins/SendScreenshotPlus/src/UMainForm.cpp b/plugins/SendScreenshotPlus/src/UMainForm.cpp index 217cc19f08..b7ccde171b 100644 --- a/plugins/SendScreenshotPlus/src/UMainForm.cpp +++ b/plugins/SendScreenshotPlus/src/UMainForm.cpp @@ -939,7 +939,10 @@ INT_PTR TfrmMain::SaveScreenshot(FIBITMAP* dib) { mir_tcsadd(pszFileDesc, TranslateT("of \"")); GetDlgItemText(m_hwndTabPage, ID_edtCaption, winText, 1024); mir_tcsadd(pszFileDesc, winText); - mir_tcsadd(pszFileDesc, TranslateT("\" Window")); + if(m_opt_tabCapture==1) + mir_tcsadd(pszFileDesc, TranslateT("\"")); + else + mir_tcsadd(pszFileDesc, TranslateT("\" Window")); // convert to 32Bits (make shure it is 32bit) FIBITMAP *dib_new = FIP->FI_ConvertTo32Bits(dib); diff --git a/plugins/SendScreenshotPlus/src/version.h b/plugins/SendScreenshotPlus/src/version.h index 28a6efe6e4..279981b508 100644 --- a/plugins/SendScreenshotPlus/src/version.h +++ b/plugins/SendScreenshotPlus/src/version.h @@ -1,7 +1,7 @@ #define __MAJOR_VERSION 0 #define __MINOR_VERSION 8 #define __RELEASE_NUM 3 -#define __BUILD_NUM 0 +#define __BUILD_NUM 1 #define __DEF2STR_(s) #s #define __DEF2STR(s) __DEF2STR_(s) |