File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -6277,6 +6277,7 @@ void QgisApp::fileSaveAs()
6277
6277
// add this to the list of recently used project files
6278
6278
saveRecentProjectPath();
6279
6279
mProjectLastModified = fullPath.lastModified();
6280
+ emit newProject();
6280
6281
}
6281
6282
else
6282
6283
{
Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ void QgsBrowserDockWidget::showEvent( QShowEvent *e )
156
156
mPropertiesWidgetHeight = settings.value ( settingsSection () + " /propertiesWidgetHeight" ).toFloat ();
157
157
QList<int > sizes = mSplitter ->sizes ();
158
158
int total = sizes.value ( 0 ) + sizes.value ( 1 );
159
- int height = static_cast <int >( total ) * mPropertiesWidgetHeight ;
159
+ int height = static_cast <int >( total * mPropertiesWidgetHeight ) ;
160
160
sizes.clear ();
161
161
sizes << total - height << height;
162
162
mSplitter ->setSizes ( sizes );
You can’t perform that action at this time.
0 commit comments