Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-02-02 03:43:25 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-02-02 03:47:49 +0300
commitf48e876459acec1769dd329c1978c5c82530792c (patch)
treed8dca76290c1a2a70550cb3c3418beaa155c5089 /source/blender/editors/interface
parentf051d47cdbcee708bbb7190f2790ac372cab00e2 (diff)
Cleanup: clang-format
Diffstat (limited to 'source/blender/editors/interface')
-rw-r--r--source/blender/editors/interface/interface_icons_event.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/source/blender/editors/interface/interface_icons_event.c b/source/blender/editors/interface/interface_icons_event.c
index 3cc7aaddf38..9a967c3b8f3 100644
--- a/source/blender/editors/interface/interface_icons_event.c
+++ b/source/blender/editors/interface/interface_icons_event.c
@@ -74,8 +74,10 @@
#include "interface_intern.h"
-static void icon_draw_rect_input_text(
- const rctf *rect, const float color[4], const char *str, int font_size)
+static void icon_draw_rect_input_text(const rctf *rect,
+ const float color[4],
+ const char *str,
+ int font_size)
{
BLF_batch_draw_flush();
const int font_id = BLF_default();
@@ -206,8 +208,7 @@ void icon_draw_rect_input(float x,
icon_draw_rect_input_text(&rect, color, (const char[]){'P', 0xe2, 0x86, 0x91, 0x0}, 8);
}
else if (event_type == PAGEDOWNKEY) {
- icon_draw_rect_input_text(
- &rect, color, (const char[]){'P', 0xe2, 0x86, 0x93, 0x0}, 8);
+ icon_draw_rect_input_text(&rect, color, (const char[]){'P', 0xe2, 0x86, 0x93, 0x0}, 8);
}
else if (event_type == LEFTARROWKEY) {
icon_draw_rect_input_symbol(&rect, color, (const char[]){0xe2, 0x86, 0x90, 0x0});