Fixed an off by 1 UI inconsistency.
This commit is contained in:
parent
5de711cdaf
commit
af14fd258b
1 changed files with 1 additions and 1 deletions
|
|
@ -340,7 +340,7 @@ void render_action_log(const char log[5][128], int count, int head) {
|
||||||
DrawText("MESSAGE LOG", log_x + 8, log_y + 6, 10, (Color){180, 160, 130, 255});
|
DrawText("MESSAGE LOG", log_x + 8, log_y + 6, 10, (Color){180, 160, 130, 255});
|
||||||
|
|
||||||
// Separator line under title
|
// Separator line under title
|
||||||
DrawLine(log_x + 4, log_y + 22, log_x + log_width - 5, log_y + 22, log_border_dark);
|
DrawLine(log_x + 4, log_y + 22, log_x + log_width - 4, log_y + 22, log_border_dark);
|
||||||
|
|
||||||
// Log entries
|
// Log entries
|
||||||
int text_x = log_x + 8;
|
int text_x = log_x + 8;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue