Skip to content

Commit a714e3d

Browse files
committedMay 16, 2024·
Further improvements to UI elements at lower res
1 parent e357a7f commit a714e3d

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed
 

‎src/tabs/about.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ SKIF_UI_Tab_DrawAbout (void)
2727

2828
SKIF_ImGui_Spacing ( );
2929

30-
ImGui::TextWrapped ("You are looking at the Special K Injection Frontend app, commonly referred to as \"SKIF\". "
31-
"This app is used to inject Special K into launched games, or even into games that are already running!\n\n"
32-
"The frontend also provides convenient alternative launch options, shortcuts to various useful resources, and a few other useful things.");
30+
ImGui::TextWrapped ("You are looking at the Special K Injection Frontend app, commonly shortened as 'SKIF'. "
31+
"This app injects Special K into any games launched from it, or even into games that are already running!\n\n"
32+
"The frontend also provides convenient alternative launch options, shortcuts to useful resources, and a few other helpful things.");
3333
};
3434

3535
SKIF_ImGui_Spacing ( );

‎src/tabs/settings.cpp

+9-7
Original file line numberDiff line numberDiff line change
@@ -1447,14 +1447,14 @@ SKIF_UI_Tab_DrawSettings (void)
14471447
ImGui::TextColored (ImGui::GetStyleColorVec4 (ImGuiCol_SKIF_Info), ICON_FA_LIGHTBULB);
14481448
SKIF_ImGui_SetHoverTip ("This enables the use of Xbox controllers to navigate within this app.");
14491449

1450-
if ( ImGui::Checkbox ( "Automatically install new updates", &_registry.bAutoUpdate ) )
1451-
_registry.regKVAutoUpdate.putData ( _registry.bAutoUpdate);
1450+
if ( ImGui::Checkbox ( "Automatically install new updates", &_registry.bAutoUpdate ) )
1451+
_registry.regKVAutoUpdate.putData ( _registry.bAutoUpdate);
14521452

1453-
if ( ImGui::Checkbox ( "Always open this app on the same monitor as the mouse", &_registry.bOpenAtCursorPosition ) )
1454-
_registry.regKVOpenAtCursorPosition.putData ( _registry.bOpenAtCursorPosition );
1453+
if ( ImGui::Checkbox ( "Open this app on the same monitor as the " ICON_FA_ARROW_POINTER, &_registry.bOpenAtCursorPosition ) )
1454+
_registry.regKVOpenAtCursorPosition.putData ( _registry.bOpenAtCursorPosition );
14551455

1456-
if ( ImGui::Checkbox ( "Always open this app in the smaller service mode view", &_registry.bOpenInServiceMode) )
1457-
_registry.regKVOpenInServiceMode.putData ( _registry.bOpenInServiceMode);
1456+
if ( ImGui::Checkbox ( "Open this app in the smaller service mode view", &_registry.bOpenInServiceMode) )
1457+
_registry.regKVOpenInServiceMode.putData ( _registry.bOpenInServiceMode);
14581458

14591459
/*
14601460
if (! SKIF_Util_GetDragFromMaximized ( ))
@@ -1472,10 +1472,12 @@ SKIF_UI_Tab_DrawSettings (void)
14721472
}
14731473
*/
14741474

1475-
if (ImGui::Checkbox ("Do not stop the injection service when this app closes",
1475+
if (ImGui::Checkbox ("Do not stop the injection service on exit",
14761476
&_registry.bAllowBackgroundService))
14771477
_registry.regKVAllowBackgroundService.putData ( _registry.bAllowBackgroundService);
14781478

1479+
SKIF_ImGui_SetHoverTip ("This allows the injection service to remain running even after this app has been closed.");
1480+
14791481
if (_registry.bCloseToTray)
14801482
{
14811483
ImGui::BeginGroup ( );

0 commit comments

Comments
 (0)
Please sign in to comment.