Changeset 41 for trunk/dll


Ignore:
Timestamp:
Mar 17, 2018, 11:00:45 PM (8 years ago)
Author:
Gregg Young
Message:

Fix hang on non-full screen capture of window with a menu open; Fix failure of widow to come to the top when program set as always on top are running. Add part of window title to auto file names; Major overhaul of settings dialog for Gotcha Quiet. More _QUIET_ ifdefs added to split code where Gotcha and Gotcha Quiet differ.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/gotchdll.c

    r27 r41  
    6666        }
    6767    }
    68     else if (usScan == VK_PRINTSCRN || CHAR4FROMMP(pqmsg->mp1) == 93 ) {
     68    else if ((usScan == VK_PRINTSCRN || CHAR4FROMMP(pqmsg->mp1) == 93 ) &&
     69             (usFlags & KC_CTRL)) {
     70        if (usFlags & KC_KEYUP) {
     71            WinPostMsg (hwndFrame, WM_COMMAND,
     72                        MPFROM2SHORT (WID_PB_SETCAPTURETYPE,0), MPFROMLONG(1));
     73            return TRUE;
     74        }
     75
     76    }
     77    else if ((usScan == VK_PRINTSCRN || CHAR4FROMMP(pqmsg->mp1) == 93 )) {
    6978        if (usFlags & KC_KEYUP) {
    7079            WinPostMsg (hwndFrame, WM_COMMAND,
Note: See TracChangeset for help on using the changeset viewer.