Made sure scroll wheel worked right with new Prev/Next buttons taking up space in stamp selector.
This commit is contained in:
parent
d451169a83
commit
aba6e59953
1 changed files with 11 additions and 7 deletions
|
|
@ -3010,13 +3010,17 @@ static void mainloop(void)
|
||||||
/* Note set of things we're dealing with */
|
/* Note set of things we're dealing with */
|
||||||
/* (stamps, brushes, etc.) */
|
/* (stamps, brushes, etc.) */
|
||||||
|
|
||||||
if (cur_tool == TOOL_STAMP)
|
if (cur_tool == TOOL_STAMP)
|
||||||
{
|
{
|
||||||
if (!disable_stamp_controls)
|
if (!disable_stamp_controls)
|
||||||
gd_controls = (grid_dims)
|
gd_controls = (grid_dims)
|
||||||
{
|
{
|
||||||
2, 2};
|
3, 2}; // was 2,2 before adding left/right stamp group buttons -bjk 2007.05.15
|
||||||
}
|
else
|
||||||
|
gd_controls = (grid_dims)
|
||||||
|
{
|
||||||
|
1, 2}; // was left 0,0 before adding left/right stamp group buttons -bjk 2007.05.03
|
||||||
|
}
|
||||||
else if (cur_tool == TOOL_TEXT)
|
else if (cur_tool == TOOL_TEXT)
|
||||||
{
|
{
|
||||||
if (!disable_stamp_controls)
|
if (!disable_stamp_controls)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue