mirror of
https://github.com/antopilo/Nuake.git
synced 2026-09-15 20:08:54 +03:00
NK-92 PR Comments
This commit is contained in:
@@ -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();
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -248,7 +248,7 @@ namespace Nuake
|
||||
|
||||
void Window::SetVSync(bool enabled)
|
||||
{
|
||||
glfwSwapInterval(enabled ? 1: 0);
|
||||
glfwSwapInterval(enabled ? 1 : 0);
|
||||
}
|
||||
|
||||
void Window::SetDecorated(bool enabled)
|
||||
|
||||
Reference in New Issue
Block a user