Bug 205781 - Save Dialogues prematurely save when using keyboard navigation to enter directory
Summary: Save Dialogues prematurely save when using keyboard navigation to enter direc...
Status: RESOLVED FIXED
Alias: None
Product: kfile
Classification: Applications
Component: general (show other bugs)
Version: unspecified
Platform: Ubuntu Unspecified
: NOR normal
Target Milestone: ---
Assignee: kdelibs bugs
URL:
Keywords:
: 115251 (view as bug list)
Depends on:
Blocks:
 
Reported: 2009-08-31 13:28 UTC by Dotan Cohen
Modified: 2010-10-12 17:15 UTC (History)
3 users (show)

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Dotan Cohen 2009-08-31 13:28:48 UTC
Version:            (using KDE 4.3.0)
Installed from:    Ubuntu Packages

Steps to reproduce:
1) Open ksnapshot and create a screenshot.
2)Press "Save As", click on "Home", and click on the background of the directory list.
3) Now you can do a quick keyboard navigation. Enter the directory name in which you want to change. Then press
ENTER.

What the user expects to happen:
One would expect that you only change into this directory when pressing ENTER.

What actually happens:
The open dialogue does not only change into the directory, but saves also the file in this dir afterwards.


This is unintuitive. If the cursor / focus is in the directory list ENTER should only be used for the navigation in the directory tree. Only when the user changes to the filename input field (by pressing TAB) and press ENTER would the user expect the file to get saved.
Comment 1 Stefan Endrullis 2009-08-31 14:28:19 UTC
I agree. I work almost exclusively with the keyboard, but for saving files I currently have to use the mouse because of this bug. That's a very annoying.
Comment 2 Will Stephenson 2010-03-29 19:00:57 UTC
Proposed fix http://reviewboard.kde.org/r/3435/
Comment 3 Will Stephenson 2010-04-06 10:07:24 UTC
SVN commit 1111606 by wstephens:

This patch solves the problem that the Enter/Return keys cannot be used
when saving files to navigate into a folder in KFileDialog.  What
happens is that the navigation in KDirOperator works, but the key event
is also caught by the KFileDialog itself and passed to KDialog, oking
the dialog.  Cursoring over a file in the KDirOperator populates the
location widget, so a filename is provided and the dialog is valid.

This patch consumes the Enter/Return key event in a new
KDirOperator::keyPressEvent(QKeyEvent*).  This change should be
sufficient to solve the problem, but past changes to the code have made
the control flow complex and different when loading and when saving
files.  Without the Enter/Return key press event reaching KDialog, the
user cannot save a file by selecting it and pressing Enter.

This is for 2 reasons: 

1) r891277 by ereslibre in KFileWidget::_k_fileSelected() prevents the
KDirOperator::fileSelected() signal from invoking slotOk(), to "give the
user a chance to amend the filename after selecting a file".

2) r895027 by ereslibre suppresses the KDirOperator::fileSelected()
signal from being emitted when the isSaving flag is set on KDirOperator,
when an item is activated, in order to respect KDE's
double-click/single-click activate policy.  This is redundant because
QAbstractItemView::activated() is controlled by KStyle according to KDE
click policy
(http://apaku.wordpress.com/2008/06/23/itemviews-with-kde-styles-adhere-to-kde-settings/). 

Since the behaviour change in 2) to KDirOperator::fileSelected() was
masked by the propagated Enter/Return, is redundant for its goal, and
was undocumented, the patch removes it.

The additional chance to amend the filename behaviour is inconsistent
with single click policy and gives different behaviour in between load
and save mode, but is useful since no select/deselect buttons appear on
hover in KDirOperator's views yet, so I have kept that and improved it
by focusing the location widget after a file item is activated.

BUG: 205781


 M  +8 -1      kdiroperator.cpp  
 M  +2 -0      kdiroperator.h  
 M  +3 -1      kfilewidget.cpp  


WebSVN link: http://websvn.kde.org/?view=rev&revision=1111606
Comment 4 Christoph Feck 2010-10-12 17:15:38 UTC
*** Bug 115251 has been marked as a duplicate of this bug. ***