Skip to content
This repository was archived by the owner on Sep 6, 2023. It is now read-only.

Commit 657b955

Browse files
make clearing the selection a double middle mouse click #66
1 parent 145410f commit 657b955

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

OFS-lib/UI/OFS_ScriptTimeline.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ bool ScriptTimeline::handleTimelineClicks(const OverlayDrawingCtx& ctx) noexcept
202202
EV::Enqueue<ShouldSetTimeEvent>(seekToTime);
203203
return true;
204204
}
205-
else if(ImGui::IsMouseClicked(ImGuiMouseButton_Middle))
205+
else if(ImGui::IsMouseDoubleClicked(ImGuiMouseButton_Middle))
206206
{
207207
ctx.DrawingScript()->ClearSelection();
208208
return true;

0 commit comments

Comments
 (0)