Skip to content

Commit dc1712b

Browse files
committedNov 18, 2011
make relative paths default
1 parent c40971d commit dc1712b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎src/core/qgsproject.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,7 @@ struct QgsProject::Imp
323323
// XXX THESE SHOULD BE MOVED TO STATUSBAR RELATED SOURCE
324324
QgsProject::instance()->writeEntry( "PositionPrecision", "/Automatic", true );
325325
QgsProject::instance()->writeEntry( "PositionPrecision", "/DecimalPlaces", 2 );
326+
QgsProject::instance()->writeEntry( "Paths", "/Absolute", false );
326327
}
327328

328329
}; // struct QgsProject::Imp
@@ -336,6 +337,7 @@ QgsProject::QgsProject()
336337
// XXX THESE SHOULD BE MOVED TO STATUSBAR RELATED SOURCE
337338
writeEntry( "PositionPrecision", "/Automatic", true );
338339
writeEntry( "PositionPrecision", "/DecimalPlaces", 2 );
340+
writeEntry( "Paths", "/Absolute", false );
339341
// XXX writeEntry() makes the project dirty, but it doesn't make sense
340342
// for a new project to be dirty, so let's clean it up
341343
dirty( false );

0 commit comments

Comments
 (0)
Please sign in to comment.