all repos — openbox @ 8d7cc2597e51281e171744a750b6981ce74b7ead

openbox fork - make it a bit more like ryudo

the centered menus thing got annoying :|
Dana Jansens danakj@orodu.net
commit

8d7cc2597e51281e171744a750b6981ce74b7ead

parent

e785e18a2c73e75670c2b46f3b0688bb4de18bdc

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

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

@@ -193,7 +193,9 @@ if (self->client && x < 0 && y < 0) {

x = self->client->frame->area.x + self->client->frame->size.left; y = self->client->frame->area.y + self->client->frame->size.top; } else { - x -= self->area.width / 2; + if (config_menu_middle) { + x -= self->area.width / 2; + } y -= self->title_h; } menu_frame_move(self, x, y);