Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
ca8f056d
Commit
ca8f056d
authored
Feb 14, 2017
by
Andrey Semakin
Committed by
Alexandre Julliard
Feb 15, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winemine: Added Shift+LClick hotkey to uncover multiple cells.
Signed-off-by:
Andrey Semakin
<
and-semakin@ya.ru
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
da5e8d08
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
main.c
programs/winemine/main.c
+2
-2
No files found.
programs/winemine/main.c
View file @
ca8f056d
...
@@ -884,7 +884,7 @@ static LRESULT WINAPI MainProc( HWND hWnd, UINT msg, WPARAM wParam, LPARAM lPara
...
@@ -884,7 +884,7 @@ static LRESULT WINAPI MainProc( HWND hWnd, UINT msg, WPARAM wParam, LPARAM lPara
case
WM_LBUTTONDOWN
:
case
WM_LBUTTONDOWN
:
WINE_TRACE
(
"WM_LBUTTONDOWN
\n
"
);
WINE_TRACE
(
"WM_LBUTTONDOWN
\n
"
);
if
(
wParam
&
MK_RBUTTON
)
if
(
wParam
&
(
MK_RBUTTON
|
MK_SHIFT
)
)
msg
=
WM_MBUTTONDOWN
;
msg
=
WM_MBUTTONDOWN
;
TestBoard
(
hWnd
,
&
board
,
(
short
)
LOWORD
(
lParam
),
(
short
)
HIWORD
(
lParam
),
msg
);
TestBoard
(
hWnd
,
&
board
,
(
short
)
LOWORD
(
lParam
),
(
short
)
HIWORD
(
lParam
),
msg
);
SetCapture
(
hWnd
);
SetCapture
(
hWnd
);
...
@@ -892,7 +892,7 @@ static LRESULT WINAPI MainProc( HWND hWnd, UINT msg, WPARAM wParam, LPARAM lPara
...
@@ -892,7 +892,7 @@ static LRESULT WINAPI MainProc( HWND hWnd, UINT msg, WPARAM wParam, LPARAM lPara
case
WM_LBUTTONUP
:
case
WM_LBUTTONUP
:
WINE_TRACE
(
"WM_LBUTTONUP
\n
"
);
WINE_TRACE
(
"WM_LBUTTONUP
\n
"
);
if
(
wParam
&
MK_RBUTTON
)
if
(
wParam
&
(
MK_RBUTTON
|
MK_SHIFT
)
)
msg
=
WM_MBUTTONUP
;
msg
=
WM_MBUTTONUP
;
TestBoard
(
hWnd
,
&
board
,
(
short
)
LOWORD
(
lParam
),
(
short
)
HIWORD
(
lParam
),
msg
);
TestBoard
(
hWnd
,
&
board
,
(
short
)
LOWORD
(
lParam
),
(
short
)
HIWORD
(
lParam
),
msg
);
ReleaseCapture
();
ReleaseCapture
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment