mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
[apps/code] Do not refresh the print if the sandbox is displayed
Otherwise the first responder becomes the console edit line, and events (such as Toolbox) are not intercepted by the sandbox anymore.
This commit is contained in:
committed by
EmilieNumworks
parent
383aafcc55
commit
02e79ad595
@@ -399,6 +399,9 @@ void ConsoleController::resetSandbox() {
|
||||
}
|
||||
|
||||
void ConsoleController::refreshPrintOutput() {
|
||||
if (sandboxIsDisplayed()) {
|
||||
return;
|
||||
}
|
||||
m_selectableTableView.reloadData();
|
||||
m_selectableTableView.selectCellAtLocation(0, m_consoleStore.numberOfLines());
|
||||
if (m_preventEdition) {
|
||||
|
||||
Reference in New Issue
Block a user