Branimir Karadžić 8 years ago
parent
commit
e5f228b3c9
1 changed files with 7 additions and 2 deletions
  1. 7 2
      examples/common/example-glue.cpp

+ 7 - 2
examples/common/example-glue.cpp

@@ -50,17 +50,22 @@ void showExampleDialog(entry::AppI* _app)
 			cmdExec(command);
 			cmdExec(command);
 		}
 		}
 
 
-		if (ImGui::Button("Restart") )
+		if (ImGui::Button(ICON_FA_REPEAT " Restart" ) )
 		{
 		{
 			cmdExec("app restart");
 			cmdExec("app restart");
 		}
 		}
 
 
 		ImGui::SameLine();
 		ImGui::SameLine();
-		if (ImGui::Button("Next") )
+		if (ImGui::Button(ICON_KI_NEXT " Next") )
 		{
 		{
 			cmdExec("app restart next");
 			cmdExec("app restart next");
 		}
 		}
 
 
+		ImGui::SameLine(0.0f, 25.0f);
+		if (ImGui::Button(ICON_KI_EXIT " Exit") )
+		{
+			cmdExec("exit");
+		}
 	}
 	}
 
 
 #if 0
 #if 0