mirror of
https://github.com/1Remote/1Remote.git
synced 2026-04-25 13:36:03 +03:00
Labels
No labels
area-configuration
area-ct-app
area-ct-rdp
area-ct-remoteapp
area-ct-ssh
area-ct-vnc
area-launcher
area-list
area-tags
area-teamwork
bug
chore
dependencies
general-build/ci
general-performance
general-refactor
general-security
general-supportive
general-ux
meta-documentation
meta-enhancement
meta-enhancement
meta-feature
meta-help-wanted
meta-unknown-error
priority-hi
priority-low
pull-request
question
resolution-duplicate
resolution-invalid
resolution-wontfix
stale
task-put-off
task-still-considering
task-working-in-progress
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/1Remote#1796
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 @VShawn on GitHub (Feb 5, 2026).
Original GitHub issue: https://github.com/1Remote/1Remote/issues/1066
Originally assigned to: @VShawn on GitHub.
Describe the bug
https://github.com/user-attachments/assets/7ea640d4-d008-47e0-b9ed-10a0962f6d82
To Reproduce
Steps to reproduce the behavior:
The bug appeared after the modification at #1057 in the RunForIntegrate() function.
@VShawn commented on GitHub (Feb 5, 2026):
https://github.com/1Remote/1Remote/blob/main/Ui/View/Host/TabWindowView.xaml_timer.cs#L102-L121
In the #1057, the condition
System.Windows.Forms.Control.MouseButtons != MouseButtons.Leftwas removed, which caused this bug.This is my fault because in the code comments I only mentioned that missing this condition would prevent the tab from moving, but I didn’t warn that it would also cause issues with the close button and resize functionality.
@itagagaki, may I ask if restoring this condition now would cause any problems with the features you submitted?
@itagagaki commented on GitHub (Feb 5, 2026):
The focus issue has been resolved by removing that condition. Therefore, if we reinstate it, the problem will recur.
However, I don't think the patch was the best solution to the problem. Even after applying it, I've noticed that another issue remains unresolved: in some situations, the mouse pointer may not be displayed in the RDP window.
I'll make time to look into this further.
@VShawn commented on GitHub (Feb 6, 2026):
@itagagaki Okey, I see. But I would like to mention that I believe the
SSH can not closing issueis more serious than thefocus, so for now, I’ve reinstated the condition temporarily. Plz dont forget this temporarily trifle when you continue your research :)p.s. It may be possible to add another judgment condition:
check what the current mouse click target is. If it’s a tab button, then setting focus would be allowed. This would resolve issue 1052 as well as the current bug.