Kaydet (Commit) be194006 authored tarafından Jan Holesovsky's avatar Jan Holesovsky

Basic: When we warned & stopped the program, don't warn again.

It's extremely annoying to have to dismiss the warning with every keypress ;-)

Change-Id: Ie117085ef25676065aedd0744cf618e1b566688b
üst 52e07f1f
...@@ -476,7 +476,7 @@ void EditorWindow::Command( const CommandEvent& rCEvt ) ...@@ -476,7 +476,7 @@ void EditorWindow::Command( const CommandEvent& rCEvt )
bool EditorWindow::ImpCanModify() bool EditorWindow::ImpCanModify()
{ {
bool bCanModify = true; bool bCanModify = true;
if ( StarBASIC::IsRunning() ) if ( StarBASIC::IsRunning() && rModulWindow.GetBasicStatus().bIsRunning )
{ {
// If in Trace-mode, abort the trace or refuse input // If in Trace-mode, abort the trace or refuse input
// Remove markers in the modules in Notify at Basic::Stoped // Remove markers in the modules in Notify at Basic::Stoped
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment