Comment 121 for bug 1164016

Revision history for this message
Ljiljan Veselinovic (ljiljan-veselinovic) wrote :

Why don't we have both options? Why removing something that we like (find folder/file with a letter) and insisting on something else (search)? I am trying to get used to this new behavior for almost a week, but it is just slowing me down.

This could be implemented as simple as this:

## keypress event

switch (option_search_or_locate ) {
  case 1: locate_folder (char_pressed); break;
  case 2: search (char_pressed); break;
}