mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2026-05-14 11:54:32 +08:00
Fix for typing in textboxes when trying to move the camera in world view. Fixed debugging property exceptions in ResourceBaseTypes
This commit is contained in:
@@ -881,7 +881,7 @@ namespace CodeWalker.GameFiles
|
||||
|
||||
public bool IsReadOnly
|
||||
{
|
||||
get { throw new NotImplementedException(); }
|
||||
get { return false; }
|
||||
}
|
||||
|
||||
public bool Remove(T item)
|
||||
@@ -1071,7 +1071,7 @@ namespace CodeWalker.GameFiles
|
||||
|
||||
public bool IsReadOnly
|
||||
{
|
||||
get { throw new NotImplementedException(); }
|
||||
get { return false; }
|
||||
}
|
||||
|
||||
public bool Remove(T item)
|
||||
@@ -1220,7 +1220,7 @@ namespace CodeWalker.GameFiles
|
||||
|
||||
public bool IsReadOnly
|
||||
{
|
||||
get { throw new NotImplementedException(); }
|
||||
get { return false; }
|
||||
}
|
||||
|
||||
public bool Remove(T item)
|
||||
|
||||
Reference in New Issue
Block a user