Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
chrxh committed Apr 26, 2024
1 parent 2032f5e commit 374bfc5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions scripts/Server/replacesimulation.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ function closeAndExit($db) {
$success = false;
$particles = (int)$_POST['particles'];
$version = $_POST['version'];
$width = (int)$_POST['width'];
$height = (int)$_POST['height'];
$content = $_POST['content'];
$settings = $_POST['settings'];
$simId = $_POST['simId'];
Expand Down
2 changes: 1 addition & 1 deletion source/Gui/BrowserWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1349,7 +1349,7 @@ void _BrowserWindow::onReplaceResource(BrowserLeaf const& leaf)
onRefresh();
});
};
MessageDialog::getInstance().yesNo("Delete", "Do you really want to replace the selected item?", func);
MessageDialog::getInstance().yesNo("Delete", "Do you really want to replace the content of the selected item?", func);
}

void _BrowserWindow::onEditResource(NetworkResourceTreeTO const& treeTO)
Expand Down

0 comments on commit 374bfc5

Please sign in to comment.