mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-08-18 06:55:48 +03:00
Fixes in Git plugin staging.
Added a value viewer window in debugger.
This commit is contained in:
@@ -1294,6 +1294,11 @@ void DebuggerPlugin::onRegisterDocument( TextDocument* doc ) {
|
||||
if ( getStatusDebuggerController() )
|
||||
getStatusDebuggerController()->toggle();
|
||||
} );
|
||||
|
||||
doc->setCommand( "show-debugger-tab", [this]() {
|
||||
if ( mTab )
|
||||
mTab->setTabSelected();
|
||||
} );
|
||||
}
|
||||
|
||||
void DebuggerPlugin::onRegisterEditor( UICodeEditor* editor ) {
|
||||
@@ -2136,8 +2141,7 @@ void DebuggerPlugin::displayTooltip( UICodeEditor* editor, const std::string& ex
|
||||
mHoverTooltip->showWhenReady();
|
||||
}
|
||||
|
||||
bool DebuggerPlugin::onMouseMove( UICodeEditor* editor, const Vector2i& position,
|
||||
const Uint32& flags ) {
|
||||
bool DebuggerPlugin::onMouseMove( UICodeEditor* editor, const Vector2i& position, const Uint32& ) {
|
||||
|
||||
if ( !mDebugger || !mListener || !mDebugger->isServerConnected() ||
|
||||
mDebuggingState != StatusDebuggerController::State::Paused ) {
|
||||
|
||||
Reference in New Issue
Block a user