mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Fixed attribs for properties, renamed SkipAccessCheckAttribute
This commit is contained in:
parent
9c44273737
commit
04a46850d6
19 changed files with 162 additions and 58 deletions
|
@ -1151,7 +1151,10 @@ namespace IDE.ui
|
|||
gApp.WithTabs(scope (tab) =>
|
||||
{
|
||||
var sourceViewPanel = tab.mContent as SourceViewPanel;
|
||||
if ((sourceViewPanel != null) && (sourceViewPanel.mProjectSource.mProject == project))
|
||||
//if (sourceViewPanel?.mProjectSource?.mProject == project)
|
||||
if ((sourceViewPanel != null) &&
|
||||
(sourceViewPanel.mProjectSource != null) &&
|
||||
(sourceViewPanel.mProjectSource.mProject == project))
|
||||
{
|
||||
sourceViewPanel.DetachFromProjectItem();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue