Skip to content

Commit

Permalink
Fix formatting, return tooltip to be private in FileDialog
Browse files Browse the repository at this point in the history
  • Loading branch information
zorana-curkovic committed Dec 4, 2024
1 parent f98c58d commit 21b1106
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2239,7 +2239,7 @@ internal class MWFFileView : ListView

private int filterIndex = 1;

public ToolTip toolTip;
private ToolTip toolTip;
private int oldItemIndexForToolTip = -1;

private ContextMenu contextMenu;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,7 @@ public ListView ()

v_scroll = new ImplicitVScrollBar ();
Controls.AddImplicit (this.v_scroll);

h_marker = v_marker = 0;
keysearch_tickcnt = 0;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2232,8 +2232,8 @@ private void MouseLeftItem (TreeNode item)
private ToolTip ToolTipWindow {
get {
if (tooltip_window == null)
tooltip_window = new ToolTip(this);
tooltip_window = new ToolTip (this);

return tooltip_window;
}
}
Expand Down

0 comments on commit 21b1106

Please sign in to comment.