Hi all, I'm newbie creating Gui applications and I will be very thankfull if you could suggest me about this: I have a QListWidget where I show as icons all the images of a specified directory.I have a QComboBox where the user can write the path of this directory and a button connected to QFileDialog:getExistingDirectory to let choose manually from the file system. One of the functionalities of the app is move the selected items (files) in the list to another directory that can be chosen with another "getExistingDirectory" dialog. And here's my question: Which path do you think that should be more elegant/comfortable for the user to start both dialogs? One option could be start with the
current text of the combobox in the case that the user wants to select a new directory to see its contents, and the last directory selected in the case that the user wants to move the current selection. Another solution could be setting as the current application path the path the user choses in any of both dialogs, and start both dialog with the current path. But I'm a little scared of modify the current application path...
What do you think that should be better? Should I modify the current application path to do it?

Thanks.