Bug #1807
Updated by Zbigniew Rebacz over 7 years ago
The debugger quality is bad and it should be improved. We can not tolerate that it close the application when breakpoint is hit multiple times.
1. Open ide project and set breakpoint in following code (ide/EditorTabBar.cpp):
<pre><code class="cpp">
void Ide::FileSelected()
{
if(IsNull(editfile))
return;
tabs.SetAddFile(editfile); // Break point here!!
}
</code></pre> </code><pre>
2. Start debugging ide and click on any file tab.
3. Continue in debug
4. Continue in debug
After the second continue ide stop debugging. This ruin the debugging experience, so much.
1. Open ide project and set breakpoint in following code (ide/EditorTabBar.cpp):
<pre><code class="cpp">
void Ide::FileSelected()
{
if(IsNull(editfile))
return;
tabs.SetAddFile(editfile); // Break point here!!
}
</code></pre> </code><pre>
2. Start debugging ide and click on any file tab.
3. Continue in debug
4. Continue in debug
After the second continue ide stop debugging. This ruin the debugging experience, so much.