[nostalgia/core/studio] Move Select tool to first tool in TileSheetEditor toolbox
This commit is contained in:
parent
0d9c7867aa
commit
379c939208
@ -123,15 +123,15 @@ void TileSheetEditorImGui::draw(core::Context*) noexcept {
|
|||||||
ImGui::BeginChild("ToolBox", ImVec2(m_palViewWidth - 24, 30), true);
|
ImGui::BeginChild("ToolBox", ImVec2(m_palViewWidth - 24, 30), true);
|
||||||
{
|
{
|
||||||
const auto btnSz = ImVec2(45, 14);
|
const auto btnSz = ImVec2(45, 14);
|
||||||
|
if (ImGui::Selectable("Select", m_tool == Tool::Select, 0, btnSz)) {
|
||||||
|
m_tool = Tool::Select;
|
||||||
|
}
|
||||||
|
ImGui::SameLine();
|
||||||
if (ImGui::Selectable("Draw", m_tool == Tool::Draw, 0, btnSz)) {
|
if (ImGui::Selectable("Draw", m_tool == Tool::Draw, 0, btnSz)) {
|
||||||
m_tool = Tool::Draw;
|
m_tool = Tool::Draw;
|
||||||
model()->clearSelection();
|
model()->clearSelection();
|
||||||
}
|
}
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
if (ImGui::Selectable("Select", m_tool == Tool::Select, 0, btnSz)) {
|
|
||||||
m_tool = Tool::Select;
|
|
||||||
}
|
|
||||||
ImGui::SameLine();
|
|
||||||
if (ImGui::Selectable("Fill", m_tool == Tool::Fill, 0, btnSz)) {
|
if (ImGui::Selectable("Fill", m_tool == Tool::Fill, 0, btnSz)) {
|
||||||
m_tool = Tool::Fill;
|
m_tool = Tool::Fill;
|
||||||
model()->clearSelection();
|
model()->clearSelection();
|
||||||
|
Loading…
Reference in New Issue
Block a user