mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Small fixes + improve console autocomplete readability
This commit is contained in:
parent
9506a5141a
commit
cfa572f20e
@ -16,4 +16,5 @@ COM_ExplainDisconnection
|
||||
void* HCOM_ExplainDisconnection(void* unused, const char* fmt, ...)
|
||||
{
|
||||
// !TODO: rebuild.
|
||||
return nullptr;
|
||||
}
|
||||
|
@ -256,7 +256,7 @@ void CConsole::BasePanel(bool* bDraw)
|
||||
}
|
||||
m_vecSuggestWindowPos = ImGui::GetItemRectMin();
|
||||
m_vecSuggestWindowPos.y += ImGui::GetItemRectSize().y;
|
||||
m_vecSuggestWindowSize = ImVec2(500, nPad + std::clamp(static_cast<int>(m_vsvSuggest.size()) * 18, 37, 122));
|
||||
m_vecSuggestWindowSize = ImVec2(600, nPad + std::clamp(static_cast<int>(m_vsvSuggest.size()) * 18, 37, 122));
|
||||
|
||||
ImGui::SameLine();
|
||||
if (ImGui::Button("Submit"))
|
||||
@ -427,7 +427,7 @@ void CConsole::FindFromPartial(void)
|
||||
{
|
||||
ConVar* pConVar = reinterpret_cast<ConVar*>(pCommandBase);
|
||||
|
||||
svValue = "= ["; // Assign default value to string if its a ConVar.
|
||||
svValue = " = ["; // Assign default value to string if its a ConVar.
|
||||
svValue.append(pConVar->GetString());
|
||||
svValue.append("]");
|
||||
}
|
||||
@ -438,7 +438,7 @@ void CConsole::FindFromPartial(void)
|
||||
std::string svHelpText = pCommandBase->GetHelpText();
|
||||
if (!svHelpText.empty())
|
||||
{
|
||||
svValue.append(" | \"" + svHelpText + "\"");
|
||||
svValue.append(" - \"" + svHelpText + "\"");
|
||||
}
|
||||
}
|
||||
if (pCommandBase->GetUsageText())
|
||||
@ -446,13 +446,13 @@ void CConsole::FindFromPartial(void)
|
||||
std::string svUsageText = pCommandBase->GetUsageText();
|
||||
if (!svUsageText.empty())
|
||||
{
|
||||
svValue.append(" | \"" + svUsageText + "\"");
|
||||
svValue.append(" - \"" + svUsageText + "\"");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
m_vsvSuggest.push_back(g_vsvAllConVars[i] + " " + svValue + "");
|
||||
m_vsvSuggest.push_back(g_vsvAllConVars[i] + svValue);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -868,7 +868,7 @@ void CConsole::SetStyleVar(void)
|
||||
style.ItemSpacing = ImVec2(4, 4);
|
||||
style.FramePadding = ImVec2(4, 4);
|
||||
style.WindowPadding = ImVec2(5, 5);
|
||||
style.WindowMinSize = ImVec2(518, 518);
|
||||
style.WindowMinSize = ImVec2(618, 518);
|
||||
}
|
||||
|
||||
CConsole* g_pIConsole = new CConsole();
|
||||
|
@ -453,7 +453,7 @@ void ConVar::SetDefault(const char* pszDefault)
|
||||
//-----------------------------------------------------------------------------
|
||||
void ConVar::ChangeStringValue(const char* pszTempVal, float flOldValue)
|
||||
{
|
||||
assert(!(m_ConCommandBase.m_nFlags & FCVAR_NEVER_AS_STRING));
|
||||
assert(!(m_nFlags & FCVAR_NEVER_AS_STRING));
|
||||
|
||||
char* pszOldValue = (char*)_malloca(m_Value.m_iStringLength);
|
||||
if (pszOldValue != NULL)
|
||||
|
Loading…
x
Reference in New Issue
Block a user