only show the coords popup when both directions have a size increment
This commit is contained in:
parent
97cbacd9e4
commit
10df03b957
1 changed files with 2 additions and 3 deletions
|
@ -369,9 +369,8 @@ static void do_resize()
|
|||
if there are 2 text boxes */
|
||||
if (config_resize_popup_show == 2 || /* == "Always" */
|
||||
(config_resize_popup_show == 1 && /* == "Nonpixel" */
|
||||
(moveresize_client->size_inc.width > 1 ||
|
||||
moveresize_client->size_inc.width > 1 &&
|
||||
moveresize_client->size_inc.height > 1))
|
||||
)
|
||||
popup_coords(moveresize_client, "%d x %d",
|
||||
moveresize_client->logical_size.width,
|
||||
moveresize_client->logical_size.height);
|
||||
|
|
Loading…
Reference in a new issue