Feature request #3936
can't open OGR Supported layers (stable version 0.7.4)
Status: | Closed | ||
---|---|---|---|
Priority: | Low | ||
Assignee: | Gary Sherman | ||
Category: | - | ||
Pull Request or Patch supplied: | Resolution: | fixed | |
Easy fix?: | No | Copied to github as #: | 13960 |
Description
QGis compiled from source.
When You try to open SHP or TAB file, the "open file" dialog can't choose the file or directory.
There were a little problem in src/qgisapp.cpp .
To get properly working code I've modified two lines: 1929 and 1931 replacying:
==============================
settings.writeEntry("/qgis/UI//lastVectorFileFilter", openFileDialog->selectedFilter());
==============================
with:
------------------------------
settings.writeEntry("/qgis/UI/lastVectorFileFilter", openFileDialog->selectedFilter());
settings.writeEntry("/qgis/UI/lastVectorFileFilterDir", openFileDialog->dirPath());
-------------------------------
History
#1 Updated by Gavin Macaulay - over 18 years ago
- Resolution set to fixed
- Status changed from Open to Closed
I've checked the code, and this problem has been resolved in 0.8, from which we will soon be releasing a beta version.