mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
Fix small graphical glix tabs
* They where to close to bottom.
This commit is contained in:
parent
9eb59fb616
commit
cd8abd1153
1 changed files with 2 additions and 2 deletions
|
@ -1650,8 +1650,8 @@ MenuReturn menu ( char **lines, unsigned int num_lines, char **input, char *prom
|
|||
int width = ( state.w - ( 2 * ( config.padding ) ) ) / num_switchers;
|
||||
for ( int j = 0; j < num_switchers; j++ ) {
|
||||
switchers[j].tb = textbox_create ( main_window, TB_CENTER,
|
||||
config.padding + j * width, state.h - line_height - config.padding + LINE_MARGIN,
|
||||
width, line_height, ( j == curr_switcher ) ? HIGHLIGHT : NORMAL, switchers[j].name );
|
||||
config.padding + j * width, state.h - line_height - config.padding,
|
||||
width, line_height, ( j == curr_switcher ) ? HIGHLIGHT : NORMAL, switchers[j].name );
|
||||
textbox_show ( switchers[j].tb );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue