mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-18 05:58:19 +00:00
Merge pull request #9003 from Robyt3/Editor-Prompt-Fix
Fix some editor quick actions not being clickable, small refactoring
This commit is contained in:
commit
034e4971f8
|
@ -112,11 +112,7 @@ void CPrompt::OnRender(CUIRect _)
|
|||
|
||||
if(m_PromptInput.IsEmpty() || FuzzyMatch(pQuickAction->Label(), m_PromptInput.GetString()))
|
||||
{
|
||||
bool Skip = false;
|
||||
if(m_ResetFilterResults)
|
||||
if(pQuickAction == m_pLastAction)
|
||||
Skip = true;
|
||||
if(!Skip)
|
||||
if(!m_ResetFilterResults || pQuickAction != m_pLastAction)
|
||||
m_vpFilteredPromptList.push_back(pQuickAction);
|
||||
}
|
||||
}
|
||||
|
@ -130,15 +126,15 @@ void CPrompt::OnRender(CUIRect _)
|
|||
|
||||
for(size_t i = 0; i < m_vpFilteredPromptList.size(); i++)
|
||||
{
|
||||
const CListboxItem Item = s_ListBox.DoNextItem(m_vpFilteredPromptList[i], m_PromptSelectedIndex >= 0 && (size_t)m_PromptSelectedIndex == i);
|
||||
const CListboxItem Item = s_ListBox.DoNextItem(m_vpFilteredPromptList[i]->ActionButtonId(), m_PromptSelectedIndex >= 0 && (size_t)m_PromptSelectedIndex == i);
|
||||
if(!Item.m_Visible)
|
||||
continue;
|
||||
|
||||
CUIRect LabelColumn, DescColumn;
|
||||
float Margin = 5.0f;
|
||||
Item.m_Rect.VSplitLeft(Margin, nullptr, &LabelColumn);
|
||||
Item.m_Rect.VMargin(Margin, &LabelColumn);
|
||||
LabelColumn.VSplitLeft(LabelWidth, &LabelColumn, &DescColumn);
|
||||
DescColumn.VSplitRight(Margin, &DescColumn, nullptr);
|
||||
DescColumn.VSplitLeft(Margin, nullptr, &DescColumn);
|
||||
|
||||
SLabelProperties Props;
|
||||
Props.m_MaxWidth = LabelColumn.w;
|
||||
|
@ -146,9 +142,7 @@ void CPrompt::OnRender(CUIRect _)
|
|||
Ui()->DoLabel(&LabelColumn, m_vpFilteredPromptList[i]->Label(), 10.0f, TEXTALIGN_ML, Props);
|
||||
|
||||
Props.m_MaxWidth = DescColumn.w;
|
||||
ColorRGBA DescColor = TextRender()->DefaultTextColor();
|
||||
DescColor.a = Item.m_Selected ? 1.0f : 0.8f;
|
||||
TextRender()->TextColor(DescColor);
|
||||
TextRender()->TextColor(TextRender()->DefaultTextColor().WithAlpha(Item.m_Selected ? 1.0f : 0.8f));
|
||||
Ui()->DoLabel(&DescColumn, m_vpFilteredPromptList[i]->Description(), 10.0f, TEXTALIGN_MR, Props);
|
||||
TextRender()->TextColor(TextRender()->DefaultTextColor());
|
||||
}
|
||||
|
|
|
@ -20,6 +20,8 @@ private:
|
|||
FButtonActiveCallback m_pfnActiveCallback;
|
||||
FButtonColorCallback m_pfnColorCallback;
|
||||
|
||||
const char m_ActionButtonId = 0;
|
||||
|
||||
public:
|
||||
CQuickAction(
|
||||
const char *pLabel,
|
||||
|
@ -64,6 +66,8 @@ public:
|
|||
}
|
||||
|
||||
const char *Description() const { return m_pDescription; }
|
||||
|
||||
const void *ActionButtonId() const { return &m_ActionButtonId; }
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue