mirror of
https://github.com/NickeManarin/ScreenToGif.git
synced 2026-04-25 15:15:51 +03:00
[GH-ISSUE #80] Triple click to select all does not work for file name text boxbox #1439
Labels
No labels
copy cats
duplicated
future feature
pull-request
⬜ Accepted
⬜ Completed
⬜ Help Wanted 💪
⬜ In Progress
⬜ Missing Details
⬜ Pending
⬜ Waiting For Answer ⏳
🆕 feature preview
🔷 Bug 🐛
🔷 Out Of Scope
🔷 Out Of Scope
🔷 Question
🔷Enhancement
🔷Enhancement
🔷Invalid / External
🔷Knowledge Base
🔷Won't Fix
🕑 High
🕑 High
🕑 High
🕕 Medium
🕙 Low
🕛 Critical
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/ScreenToGif#1439
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @XanderLuciano on GitHub (Feb 7, 2017).
Original GitHub issue: https://github.com/NickeManarin/ScreenToGif/issues/80
Originally assigned to: @NickeManarin on GitHub.
You cannot triple click to select the entire file name when saving a gif.
Triple click should behave like CTRL+A and select the entire line. (Try triple clicking this line to see the behavior I am talking about)
Triple clicking requires less accuracy than clicking and dragging, it is easier than trying to press ctrl-a, (and is faster since my hand is already on my hosue), and is a supported in many places.

Environment
Operating system and version:
Windows 10 Pro 64-bit EN
ScreenToGIF:
2.4
@NickeManarin commented on GitHub (Feb 7, 2017):
I bumped into this issue yesterday. I saw that I'm using the wrong text box type for that field. I just need to switch. Thanks.
@NickeManarin commented on GitHub (Feb 7, 2017):
I already have a visual element for that purpose. It's called
ExtendedTextBox, already in the solution.@XanderLuciano commented on GitHub (Feb 7, 2017):
Ah didn't realize that, however
ExtendedTextBoxonly doesSelectAll()when the textbox receives focus, but doesn't allow for triple clicking which I do throughPreviewMouseLeftButtonDownEventand checkingif (e.ClickCount == 3)But I can merge my code into
ExtendedTextBoxinstead of complicating the codebase.@XanderLuciano commented on GitHub (Feb 7, 2017):
Updated the PR branch with the above modification.
@NickeManarin commented on GitHub (Mar 7, 2017):
Optional behavior under Options > Interface.