summaryrefslogtreecommitdiffhomepage
path: root/examples/web/text
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2021-07-28 12:56:54 +0200
committerraysan5 <[email protected]>2021-07-28 12:56:54 +0200
commit5ccec1e542b3a1d52ecb5c409c003396cf75b59e (patch)
treefa2948d236973d6c433e77959aa7eae46fd9c310 /examples/web/text
parent2cde0cc2123fa33418042c89f47bf7e3853174d4 (diff)
downloadraylib.com-5ccec1e542b3a1d52ecb5c409c003396cf75b59e.tar.gz
raylib.com-5ccec1e542b3a1d52ecb5c409c003396cf75b59e.zip
Replace TABS by 4 spaces
Diffstat (limited to 'examples/web/text')
-rw-r--r--examples/web/text/text_input_box.c2
-rw-r--r--examples/web/text/text_rectangle_bounds.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/web/text/text_input_box.c b/examples/web/text/text_input_box.c
index eda2de1..7a9537e 100644
--- a/examples/web/text/text_input_box.c
+++ b/examples/web/text/text_input_box.c
@@ -80,7 +80,7 @@ void UpdateDrawFrame(void)
if (mouseOnText)
{
- // Set the window's cursor to the I-Beam
+ // Set the window's cursor to the I-Beam
SetMouseCursor(MOUSE_CURSOR_IBEAM);
// Get char pressed (unicode character) on the queue
diff --git a/examples/web/text/text_rectangle_bounds.c b/examples/web/text/text_rectangle_bounds.c
index a0f14f5..2392020 100644
--- a/examples/web/text/text_rectangle_bounds.c
+++ b/examples/web/text/text_rectangle_bounds.c
@@ -149,7 +149,7 @@ void UpdateDrawFrame(void)
DrawText("Word Wrap: ", 313, screenHeight-115, 20, BLACK);
if (wordWrap) DrawText("ON", 447, screenHeight - 115, 20, RED);
else DrawText("OFF", 447, screenHeight - 115, 20, BLACK);
-
+
DrawText("Press [SPACE] to toggle word wrap", 218, screenHeight - 86, 20, GRAY);
DrawText("Click hold & drag the to resize the container", 155, screenHeight - 38, 20, RAYWHITE);