Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
993bc3ae43 | ||
|
|
4d34b9978a |
3
.github/FUNDING.yml
vendored
3
.github/FUNDING.yml
vendored
@@ -1,9 +1,8 @@
|
||||
# These are supported funding model platforms
|
||||
|
||||
|
||||
patreon: # Replace with a single Patreon username
|
||||
patreon: nuakeengine # Replace with a single Patreon username
|
||||
open_collective: # Replace with a single Open Collective username
|
||||
ko_fi: antopilo # Replace with a single Ko-fi username
|
||||
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
||||
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
||||
liberapay: # Replace with a single Liberapay username
|
||||
|
||||
@@ -2048,10 +2048,10 @@ void EditorSelectionPanel::DrawFieldTypeString(entt::meta_data& field, entt::met
|
||||
std::string controlId = std::string("##") + displayName;
|
||||
ImGui::InputText(controlId.c_str(), &fieldValProxy);
|
||||
|
||||
if (fieldValProxy != fieldVal)
|
||||
{
|
||||
Engine::GetProject()->IsDirty = true;
|
||||
}
|
||||
//if (fieldValProxy != fieldVal)
|
||||
//{
|
||||
// Engine::GetProject()->IsDirty = true;
|
||||
//}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
@@ -84,7 +84,7 @@ bool katana_string_has_prefix(const char* str, const char* prefix)
|
||||
{
|
||||
size_t pre_len = strlen(prefix);
|
||||
size_t str_len = strlen(str);
|
||||
return pre_len <= str_len && stricmp(prefix, str, pre_len);
|
||||
return pre_len <= str_len && stricmp(prefix, str);
|
||||
}
|
||||
|
||||
void katana_string_to_lowercase(struct KatanaInternalParser* parser,
|
||||
|
||||
Reference in New Issue
Block a user