Project
IntelliJ IDEA
Priority
Normal
Type
Usability Problem
Fix versions
No Fix versions
State
Open
Assignee
Dmitry Avdeev
Subsystem
Version Control
Affected versions
11.0.1 (111.167)
Fixed in build
No Fixed in build
  • Created by   Meo
    3 months ago (31 Jan 2012 20:36)
  • Updated by   Dmitry Avdeev
    2 months ago (28 Feb 2012 19:19)
 
IDEA-80668 Move changes to Active Changelist - usability
1
Issue is visible to: All Users
  The issue is visible to the selected user group only
You don't have permissions to view 1 more attachment to this issue
Current behaviour is absolutely horrible, I edit a file and then some popup bar appears, so ok, I want to move that changed file to current active changelist, but it is not that easy, i have to uncheck all files, and then find that file and select it. I just cannot easily select current file.
When my coworker who was trying Intellij saw this, he nearly stopped using IntelliJ.

It would be great to have another option, which would just move the current file to active changelist, without any dialogs.
Comments (2)
 
History
 
Linked Issues (?)
 
Meo
  Meo
02 Feb 2012 18:37
3 months ago
please add following code to the ChangelistConflictNotificationPanel

createActionLabel("Move current file to active changelist", new Runnable() {
public void run() {
for (Change change : myChangeList.getChanges()) {
if (myFile.equals(change.getVirtualFile())) {
ChangeListManagerImpl manager = (ChangeListManagerImpl) ChangeListManager.getInstance(myTracker.getProject());
manager.moveChangesTo(manager.getDefaultChangeList(), new Change[]{change});
return;
}
}
}
}).setToolTipText("Move current file to active changelist");
Meo
  Meo
02 Feb 2012 19:15
3 months ago
or something like that... you get the idea...