Resolve various debugger quirks. Fixes #1227

- Prevent the user from executing multiple options at once, resulting in "Execute cannot be used while an asynchronous query is underway********** Error ****" messages

- Stop polling when debugging is complete.

- Don't show the busy cursory when debugging is complete.

- Display info messages properly, and reset them between executions.
This commit is contained in:
Murtuza Zabuawala
2016-11-11 14:25:11 +00:00
committed by Dave Page
parent f405cdf383
commit 6f30cabdbb
3 changed files with 201 additions and 28 deletions
@@ -67,3 +67,14 @@
.CodeMirror-foldgutter-folded:after {
content: "\25B6";
}
/* To make font same as Query tool in messages tab */
.messages {
white-space: pre-wrap;
font-family: monospace;
padding-top: 5px;
padding-left: 10px;
overflow: auto;
height: 100%;
font-size: 0.925em;
}