diff options
author | pommicket <pommicket@gmail.com> | 2022-11-02 13:29:09 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-11-02 13:29:09 -0400 |
commit | b070e5ce01c829bd101b1e0eda49f1e25d9d125c (patch) | |
tree | f674fcbaad6b565e89d1ba973198024d958cac22 /find.c | |
parent | 26d34216da04a2b91e65a0eeee9200ad808d48ce (diff) |
new settings system bugfixes, use ted_active_settings more
Diffstat (limited to 'find.c')
-rw-r--r-- | find.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -70,7 +70,7 @@ static void find_free_pattern(Ted *ted) { static float find_menu_height(Ted *ted) { Font *font = ted->font; float char_height = text_font_char_height(font); - Settings const *settings = ted->settings; + Settings const *settings = ted_active_settings(ted); float const padding = settings->padding; float const border_thickness = settings->border_thickness; float const line_buffer_height = ted_line_buffer_height(ted); @@ -315,7 +315,7 @@ static void find_menu_frame(Ted *ted, Rect menu_bounds) { Font *font = ted->font, *font_bold = ted->font_bold; float const char_height = text_font_char_height(font); - Settings const *settings = ted->settings; + Settings const *settings = ted_active_settings(ted); float const padding = settings->padding; float const border_thickness = settings->border_thickness; u32 const *colors = settings->colors; |