Browse Source

Reviewed examples

raysan5 4 years ago
parent
commit
d2752e9a47

+ 0 - 2
examples/controls_test_suite/controls_test_suite.c

@@ -160,9 +160,7 @@ int main()
 
 
             GuiSetStyle(BUTTON, TEXT_ALIGNMENT, GUI_TEXT_ALIGN_CENTER);
             GuiSetStyle(BUTTON, TEXT_ALIGNMENT, GUI_TEXT_ALIGN_CENTER);
 
 
-            GuiSetTooltip("Save current file.");
             if (GuiButton((Rectangle){ 25, 255, 125, 30 }, GuiIconText(RICON_FILE_SAVE, "Save File"))) showTextInputBox = true;
             if (GuiButton((Rectangle){ 25, 255, 125, 30 }, GuiIconText(RICON_FILE_SAVE, "Save File"))) showTextInputBox = true;
-            GuiClearTooltip();
 
 
             GuiGroupBox((Rectangle){ 25, 310, 125, 150 }, "STATES");
             GuiGroupBox((Rectangle){ 25, 310, 125, 150 }, "STATES");
             GuiLock();
             GuiLock();

+ 2 - 1
examples/portable_window/portable_window.c

@@ -18,6 +18,7 @@
 #include "raylib.h"
 #include "raylib.h"
 
 
 #define RAYGUI_IMPLEMENTATION
 #define RAYGUI_IMPLEMENTATION
+#define RAYGUI_SUPPORT_ICONS
 #include "../../src/raygui.h"
 #include "../../src/raygui.h"
 
 
 //------------------------------------------------------------------------------------
 //------------------------------------------------------------------------------------
@@ -79,7 +80,7 @@ int main()
 
 
             ClearBackground(RAYWHITE);
             ClearBackground(RAYWHITE);
 
 
-            exitWindow = GuiWindowBox((Rectangle){ 0, 0, screenWidth, screenHeight }, "PORTABLE WINDOW");
+            exitWindow = GuiWindowBox((Rectangle){ 0, 0, screenWidth, screenHeight }, "#198# PORTABLE WINDOW");
             
             
             DrawText(TextFormat("Mouse Position: [ %.0f, %.0f ]", mousePosition.x, mousePosition.y), 10, 40, 10, DARKGRAY);
             DrawText(TextFormat("Mouse Position: [ %.0f, %.0f ]", mousePosition.x, mousePosition.y), 10, 40, 10, DARKGRAY);
 
 

+ 4 - 1
examples/property_list/property_list.c

@@ -76,8 +76,11 @@ int main()
             
             
             GuiDMPropertyList((Rectangle){(SCREEN_WIDTH - 180)/2, (SCREEN_HEIGHT - 280)/2, 180, 280}, prop, SIZEOF(prop), &focus, &scroll);
             GuiDMPropertyList((Rectangle){(SCREEN_WIDTH - 180)/2, (SCREEN_HEIGHT - 280)/2, 180, 280}, prop, SIZEOF(prop), &focus, &scroll);
         
         
-            if(prop[0].value.vbool)
+            if (prop[0].value.vbool >= 1)
+            {
                 DrawText(TextFormat("FOCUS:%i | SCROLL:%i | FPS:%i", focus, scroll, GetFPS()), prop[8].value.v2.x, prop[8].value.v2.y, 20, prop[11].value.vcolor);
                 DrawText(TextFormat("FOCUS:%i | SCROLL:%i | FPS:%i", focus, scroll, GetFPS()), prop[8].value.v2.x, prop[8].value.v2.y, 20, prop[11].value.vcolor);
+            }
+            
 		EndDrawing();
 		EndDrawing();
 		//----------------------------------------------------------------------------------
 		//----------------------------------------------------------------------------------
     }
     }