mirror of
https://github.com/AppleWin/AppleWin.git
synced 2025-01-04 02:30:53 +00:00
Merge #198 Pull branch alt_enter_fullscreen
This commit is contained in:
commit
5024608885
@ -31,6 +31,7 @@ Changes:
|
||||
(current memory address low byte)
|
||||
-memclear 7 Initialize memory to page address
|
||||
(current memory address high byte)
|
||||
. [Feature #198] Alt-Return toggles full screen.
|
||||
. [Feature #199] Added the option to skip the reboot confirmation in the configuration.
|
||||
. [Feature #201] Added display of current Track/Sector for the floppy drives.
|
||||
- In 2x window mode the status is displayed below the drive LEDs.
|
||||
|
@ -1550,6 +1550,10 @@ LRESULT CALLBACK FrameWndProc (
|
||||
break;
|
||||
|
||||
case WM_SYSKEYDOWN:
|
||||
KeybUpdateCtrlShiftStatus();
|
||||
if (g_bAltKey && (wparam == VK_RETURN)) // NB. VK_RETURN = 0x0D; Normally WM_CHAR will be 0x0A but ALT key triggers as WM_SYSKEYDOWN
|
||||
ScreenWindowResize(true);
|
||||
else
|
||||
PostMessage(window,WM_KEYDOWN,wparam,lparam);
|
||||
if ((wparam == VK_F10) || (wparam == VK_MENU)) // VK_MENU == ALT Key
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user