mirror of
https://github.com/davatorium/rofi.git
synced 2025-03-31 17:25:40 -04:00
Make window width include the border width.
This commit is contained in:
parent
d702ad18c6
commit
daa0d16221
1 changed files with 3 additions and 0 deletions
|
@ -974,6 +974,9 @@ MenuReturn menu ( char **lines, char **input, char *prompt, Time *time, int *shi
|
|||
// Calculate as float to stop silly, big rounding down errors.
|
||||
int w = config.menu_width < 101 ? ( mon.w / 100.0f ) * ( float ) config.menu_width : config.menu_width;
|
||||
int x = mon.x + ( mon.w - w ) / 2;
|
||||
// Compensate for border width.
|
||||
w -= config.menu_bw*2;
|
||||
|
||||
int element_width = w - ( 2 * ( config.padding ) );
|
||||
// Divide by the # columns
|
||||
element_width = ( element_width - ( columns - 1 ) * LINE_MARGIN ) / columns;
|
||||
|
|
Loading…
Add table
Reference in a new issue