Skip to content

Commit

Permalink
! Code refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
wmjordan committed Aug 11, 2023
1 parent 2804bf5 commit 8840a04
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Codist/Controls/TextViewOverlay.cs
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ void ViewSelectionChanged(object sender, EventArgs e) {
}

void BringToFront(object sender, MouseButtonEventArgs e) {
Canvas.SetZIndex(e.Source as UIElement, ++_LayerZIndex);
Panel.SetZIndex(e.Source as UIElement, ++_LayerZIndex);
}

void ReleaseQuickInfo(object sender, MouseEventArgs e) {
Expand Down
2 changes: 1 addition & 1 deletion Codist/SmartBars/SmartBar.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ internal partial class SmartBar
const int Selecting = 1, Working = 2;
internal const string QuickInfoSuppressionId = nameof(SmartBar);

/// <summary>The layer for the smart bar.</summary>
// The layer for the smart bar.
TextViewOverlay _ToolBarLayer;
readonly ToolBarTray _ToolBarTray;
readonly bool _IsDiffWindow;
Expand Down

0 comments on commit 8840a04

Please sign in to comment.