all repos — openbox @ 10df03b957576d8feef365490345756c5af8a624

openbox fork - make it a bit more like ryudo

only show the coords popup when both directions have a size increment
Dana Jansens danakj@orodu.net
commit

10df03b957576d8feef365490345756c5af8a624

parent

97cbacd9e41ae2315434d6e83ce78502a881d54f

1 files changed, 2 insertions(+), 3 deletions(-)

jump to
M openbox/moveresize.copenbox/moveresize.c

@@ -369,9 +369,8 @@ /* this would be better with a fixed width font ... XXX can do it better

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.height > 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);