elm_code: If showing line numbers don't resize at 10 lines.

Content will still shift at 100 but that should be less intrusive
This commit is contained in:
Andy Williams 2017-11-29 17:37:21 +00:00
parent 54d3091133
commit c89dc4e0e4
1 changed files with 4 additions and 2 deletions

View File

@ -12,8 +12,10 @@ _elm_code_widget_text_line_number_width_get(Eo *obj EINA_UNUSED, Elm_Code_Widget
int max;
max = elm_code_file_lines_get(pd->code->file);
if (max < 1)
max = 1;
// leave space for 2 digits minimum
if (max < 10)
max = 10;
return floor(log10(max)) + 1;
}