Skip to content

Commit

Permalink
Update InPortContextMenu.xaml (DynamoDS#13915)
Browse files Browse the repository at this point in the history
- fixed the condition in which the Edit Port Properties will be visible for all Nodes
  • Loading branch information
dnenov authored Apr 21, 2023
1 parent 57a1f94 commit 36f1531
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DynamoCoreWpf/Controls/InPortContextMenu.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@
HorizontalAlignment="Left"
Command="{Binding Path=EditPortPropertiesCommand}"
Content="{x:Static p:Resources.RenamePortPopupMenuItem}"
IsEnabled="{Binding RenameNodeButtonEnabled, UpdateSourceTrigger=PropertyChanged}"
Visibility="{Binding RenameNodeButtonEnabled, UpdateSourceTrigger=PropertyChanged, Converter={StaticResource BooleanToVisibilityCollapsedConverter}}"
IsEnabled="{Binding IsPythonNodePort, UpdateSourceTrigger=PropertyChanged}"
Visibility="{Binding IsPythonNodePort, Converter={StaticResource BooleanToVisibilityCollapsedConverter}}"
Style="{StaticResource PopupButtonStyle}" />

</StackPanel>
Expand Down

0 comments on commit 36f1531

Please sign in to comment.