mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-16 15:24:10 +02:00
Improved ListView cursor key handling, removed debug NOPs
This commit is contained in:
parent
959da9884c
commit
987adaec5c
26 changed files with 87 additions and 211 deletions
|
@ -179,11 +179,6 @@ namespace IDE.Compiler
|
|||
{
|
||||
BfCompiler_Delete(mNativeBfCompiler);
|
||||
mNativeBfCompiler = null;
|
||||
|
||||
if (mCommandQueue.Count > 0)
|
||||
{
|
||||
NOP!();
|
||||
}
|
||||
}
|
||||
|
||||
public bool Compile(BfPassInstance passInstance, String outputDirectory)
|
||||
|
@ -556,10 +551,6 @@ namespace IDE.Compiler
|
|||
{
|
||||
if ([Friend]mThreadWorker.mThreadRunning)
|
||||
{
|
||||
/*if (gApp.mMainWindow.IsKeyDown(.Control))
|
||||
{
|
||||
NOP!();
|
||||
}*/
|
||||
if (mNativeBfCompiler != null)
|
||||
BfCompiler_Cancel(mNativeBfCompiler);
|
||||
}
|
||||
|
|
|
@ -89,11 +89,6 @@ namespace IDE.Compiler
|
|||
mIsDisposed = true;
|
||||
BfPassInstance_Delete(mNativeBfPassInstance);
|
||||
mNativeBfPassInstance = null;
|
||||
|
||||
if (mFailed)
|
||||
{
|
||||
NOP!();
|
||||
}
|
||||
}
|
||||
|
||||
public bool PopOutString(String outStr)
|
||||
|
|
|
@ -52,11 +52,6 @@ namespace IDE.Compiler
|
|||
|
||||
public void QueueDeferredResolveAll()
|
||||
{
|
||||
/*if (gApp.mMainWindow.IsKeyDown(.Control))
|
||||
{
|
||||
NOP!();
|
||||
}*/
|
||||
|
||||
mResolveAllWait = 2;
|
||||
}
|
||||
|
||||
|
@ -134,11 +129,6 @@ namespace IDE.Compiler
|
|||
|
||||
public void QueueResolveCommand()
|
||||
{
|
||||
/*if (gApp.mMainWindow.IsKeyDown(.Control))
|
||||
{
|
||||
NOP!();
|
||||
}*/
|
||||
|
||||
ResolveAllCommand command = new ResolveAllCommand();
|
||||
QueueCommand(command);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue