NK-92 PR Comments

This commit is contained in:
emerycp
2023-08-02 08:40:16 -04:00
parent 17a6ded94a
commit 276fc764b2
3 changed files with 3 additions and 4 deletions

View File

@@ -384,7 +384,6 @@ namespace Nuake
ImGui::Text(file->GetName().c_str());
ImGui::PopFont();
}
bool Splitter(bool split_vertically, float thickness, float* size1, float* size2, float min_size1, float min_size2, float splitter_long_axis_size = -1.0f)
@@ -610,7 +609,6 @@ namespace Nuake
ImGui::SameLine();
ImGui::Text("/");
}
ImGui::EndChild();
ImGui::PopStyleVar();

View File

@@ -37,7 +37,8 @@ namespace Nuake
return result;
}
std::string String::Sanitize(const std::string& keyword) {
std::string String::Sanitize(const std::string& keyword)
{
std::string sanitizedKeyword = keyword;
// Remove spaces, underscores, and hyphens using regex

View File

@@ -248,7 +248,7 @@ namespace Nuake
void Window::SetVSync(bool enabled)
{
glfwSwapInterval(enabled ? 1: 0);
glfwSwapInterval(enabled ? 1 : 0);
}
void Window::SetDecorated(bool enabled)