FIXME about hand cursor over selector controls
This commit is contained in:
parent
29eec0dcb7
commit
ccfe3bc074
1 changed files with 4 additions and 0 deletions
|
|
@ -5575,6 +5575,8 @@ static void mainloop(void)
|
|||
{
|
||||
/* One of the selectors: */
|
||||
|
||||
/* FIXME: Also show "cursor_hand" when touching controls (stamp size, brush spacing, etc.!) (See below) -bjk 2022.01.19 */
|
||||
|
||||
which = ((event.button.y - r_ttoolopt.h - img_scroll_up->h) / button_h) * 2 + (event.button.x - (WINDOW_WIDTH - r_ttoolopt.w)) / button_w;
|
||||
|
||||
if (which < num_things)
|
||||
|
|
@ -5587,6 +5589,8 @@ static void mainloop(void)
|
|||
{
|
||||
/* No scroll buttons - must be a selector: */
|
||||
|
||||
/* FIXME: Also show "cursor_hand" when touching controls (stamp size, brush spacing, etc.!) (See above) -bjk 2022.01.19 */
|
||||
|
||||
which = ((event.button.y - r_ttoolopt.h) / button_h) * 2 + (event.button.x - (WINDOW_WIDTH - r_ttoolopt.w)) / button_w;
|
||||
|
||||
if (which < num_things)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue