Matthias Kuhn
1b0bd51434
Registry
2018-10-15 14:27:55 +02:00
Matthias Kuhn
5e27163705
Save geometry configuration to layer
2018-10-15 14:27:55 +02:00
Matthias Kuhn
71dbd5a5fe
docstrings
2018-10-15 14:27:55 +02:00
Matthias Kuhn
56d299ec70
YAY, it is working
2018-10-15 14:27:55 +02:00
Matthias Kuhn
f5486ee516
Add single geometry check
2018-10-15 14:27:54 +02:00
Blottiere Paul
edeefc9e42
Tolerance fixed in GetFeatureInfo for polygons
2018-10-15 13:27:37 +01:00
Denis Rouzaud
574c672a1e
add QgsVectorLayer::getGeometry(fid) ( #8174 )
...
* add QgsVectorLayer::getGeometry(fid)
* update docs to say geom is invalid
2018-10-15 03:31:14 -08:00
Blottiere Paul
5765d49465
Add unit test for line tolerance
2018-10-15 10:40:27 +01:00
Blottiere Paul
075d53f97e
Tolerance fixed in GetFeatureInfo for lines
2018-10-15 10:39:23 +01:00
signedav
67276dcddf
corrected comment in test
2018-10-15 11:25:04 +02:00
Even Rouault
d5e57d31e6
Merge pull request #8186 from rouault/fix_20104
...
[GDAL provider] Make sure that setEditable(true) invalides cached GDAL handles to get proper refresh (fixes #20104 )
2018-10-15 11:10:00 +02:00
Even Rouault
b777ab23b1
Merge pull request #8184 from rouault/fix_20098
...
[OGR provider] Make again a feature iterator to be resetable on a OSM layer (fixes #20098 )
2018-10-15 11:09:43 +02:00
Nyall Dawson
530397c168
[layouts] Fix legend does not respect anchor point when resizing
...
based on map content
Fixes #19987
2018-10-15 19:02:48 +10:00
Nyall Dawson
46b6ffadda
Fix a bunch of QString warnings
2018-10-15 19:02:48 +10:00
Alessandro Pasotti
096b4ce004
Merge pull request #8177 from elpaso/bugfix-20094-field-calculator-slowness
...
Fixes slow update in field calculator
2018-10-15 10:32:09 +02:00
Blottiere Paul
6fce7853ca
Add unit test for point tolerance
2018-10-15 09:30:59 +01:00
Blottiere Paul
2c5d1c548b
Fixes #19383 - Tolerance fixed in GetFeatureInfo for points
2018-10-15 09:30:58 +01:00
Nyall Dawson
87e0f6961a
[processing][gdal][needs-docs] Rename crop to cutline option for clarity
...
The previous name is unclear, as the option can expand as well
as crop the raster extent. We also don't refer anywhere else in this
dialog to the cutline, so that has no meaning to users
2018-10-15 18:29:28 +10:00
signedav
a3f3187c72
tests
2018-10-15 10:27:42 +02:00
signedav
d62eb6e4d8
get in every case if not valid the copy of the value
...
even if unique constraint because it checks if existent - otherwise it get's null there
2018-10-15 10:26:36 +02:00
signedav
e8c15a9c46
tests for unique values
...
with default unique value and fallback in case the default value already exists
2018-10-15 09:14:06 +02:00
signedav
d26848e977
right order of priorities
...
by getting the value - if it's unique, first getting the defaults before creating an unique value.
Fix #20067
2018-10-15 09:12:31 +02:00
Nyall Dawson
d77c61ef81
More test
2018-10-15 16:51:16 +10:00
Nathan Woodrow
5a6c825db0
Adjust the default size of expression/selection dialog
2018-10-15 16:41:03 +10:00
Nathan Woodrow
bc51a60ee4
Expression widget ux fixes ( #8194 )
...
* Add default custom function file
* Set default size of custom expression list
2018-10-15 16:13:32 +10:00
Nyall Dawson
0fb0023519
Fix corrupted group box layouts
2018-10-15 15:47:28 +10:00
Nyall Dawson
88da833b72
Try resurrecting test under Travis
2018-10-15 15:25:17 +10:00
Nathan Woodrow
c0d35ce5de
Fix #14897 - Remove double undo/redo buttons ( #8189 )
2018-10-15 13:06:47 +10:00
Nathan Woodrow
3a684c8a2b
Fix custom function help
2018-10-15 11:50:29 +10:00
Nyall Dawson
e33caa4902
[mssql] Skip some tests on Travis which fail because of msodbcsql segfaults
2018-10-15 11:47:30 +10:00
Nyall Dawson
c6dda7b4f3
SQL Server on Travis
2018-10-15 11:47:30 +10:00
Nyall Dawson
a1a35e91cc
Dox++
2018-10-15 11:47:01 +10:00
Nyall Dawson
f07462b69a
Spelling
2018-10-15 11:47:01 +10:00
Nyall Dawson
cea155fca5
Fix warning
2018-10-15 11:47:01 +10:00
Nyall Dawson
8f6ee1c40d
Dox
2018-10-15 11:47:01 +10:00
Nathan Woodrow
8dd0f00877
Fix - Fix loading expression template for first item and space vs tabs
...
Fix tab vs spaces in Python editor widget. Use spaces
2018-10-15 10:23:24 +10:00
Nathan Woodrow
bd8d61ab1e
Follow up 5beb4e2b8d - Enable rename browser tree node on edit key only
2018-10-15 09:38:35 +10:00
Martin Dobias
0f3088abf8
Fix spelling
2018-10-14 22:13:58 +02:00
Even Rouault
651ccb43bf
[GDAL provider] Revise how referencing counting is done on mGdalBaseDataset
...
initBaseDataset() used to take a reference in the case where
mGdalDataset == mGdalBaseDataset (non warped VRT) and we dropped it when
closing the dataset, which was OK
However buidPyramids() failed to acquire this reference. There was no
negative consequence as GDALDerefenceDataset() just decremented a
reference count, and GDALClose() ignores it for a non-shared dataset,
however this was an incorrected use
It is simpler for the mind to call GDALDerefenceDataset() only when
mGdalBaseDataset != mGdalDataset.
2018-10-14 19:10:22 +02:00
Even Rouault
e7d15b6495
[GDAL provider] Make sure that setEditable(true) invalides cached GDAL handles to get proper refresh ( fixes #20104 )
2018-10-14 17:50:38 +02:00
Martin Dobias
45c9ae97c0
Add warnings about the QGIS 3D API being unstable / tech preview only
2018-10-14 16:40:13 +02:00
Martin Dobias
8814e40635
Move altitude binding/clamping enums to Qgs3DTypes + add culling mode in Python
2018-10-14 16:32:24 +02:00
Even Rouault
f0bb08de3c
[WFS client] Fix GetFeature BBOX in WFS 1.1 when the GetCapabilies CRS is urn:ogc:def:crs:OGC:1.3:CRS84 (refs #19571 )
2018-10-14 15:22:35 +02:00
Juergen E. Fischer
faeb160065
t2tdoc run (followup 8923aa9bb & ae397bf24)
2018-10-14 13:51:57 +02:00
Juergen E. Fischer
82dccf71a5
osgeo4w: detect python version in package.cmd
2018-10-14 13:42:07 +02:00
James Shaeffer
8923aa9bb1
Removed duplicate lines from Linux install guide
2018-10-14 13:37:17 +02:00
Even Rouault
906f80219f
[OGR provider] Make again a feature iterator to be resetable on a OSM layer ( fixes #20098 )
2018-10-14 12:43:54 +02:00
Alessandro Pasotti
c8ea3a701c
blockAttributeTableUpdates: single signal with bool
2018-10-14 11:39:31 +02:00
Alessandro Pasotti
20e85927b7
Remove unused forward declaration
2018-10-14 01:12:26 +02:00
Alessandro Pasotti
07b31287ba
Fix rollback on large tables when attr table is opened
2018-10-14 00:44:25 +02:00