summaryrefslogtreecommitdiff
path: root/ui.c
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-01-29 15:45:49 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2021-01-29 15:45:58 -0500
commit5230cb1533d9e30e9870975cba2cd7e7e86bc22a (patch)
tree260c4bac7a1624eb5cc4cbba492d7822aee260d7 /ui.c
parent31b5649b131695300f39563640c4af8f0d3032cb (diff)
started tab bar
Diffstat (limited to 'ui.c')
-rw-r--r--ui.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/ui.c b/ui.c
index f0cdb72..e49e9c1 100644
--- a/ui.c
+++ b/ui.c
@@ -431,7 +431,7 @@ static void file_selector_render(Ted *ted, FileSelector *fs) {
// search buffer
float line_buffer_height = char_height * 1.5f;
- buffer_render(&ted->line_buffer, x1, y1, x2, y1 + line_buffer_height);
+ buffer_render(&ted->line_buffer, rect4(x1, y1, x2, y1 + line_buffer_height));
y1 += line_buffer_height;
@@ -577,11 +577,11 @@ static void popup_render(Ted *ted, char const *title, char const *body) {
gl_color_rgba(colors[COLOR_TEXT]);
float text_x1 = rect_x1(r) + padding;
float text_x2 = rect_x2(r) - padding;
- TextRenderState state = {
- .render = true, .wrap = true,
- .min_x = text_x1, .max_x = text_x2,
- .min_y = -FLT_MAX, .max_y = +FLT_MAX
- };
+
+ TextRenderState state = text_render_state_default;
+ state.min_x = text_x1;
+ state.max_x = text_x2;
+ state.wrap = true;
text_render_with_state(font, &state, body, text_x1, y);
button_render(ted, button_yes, "Yes", colors[COLOR_YES]);