Skip to content

Commit

Permalink
Fixed minor issues in ObjectListView (thanks to @GermanAizek in #378)
Browse files Browse the repository at this point in the history
  • Loading branch information
Klocman committed Aug 8, 2022
1 parent 244ce49 commit 052719c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/ObjectListView/Rendering/Decorations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ public EditingCellBorderDecoration() {
/// <param name="useLightBox">Should the decoration use a lighbox display style?</param>
public EditingCellBorderDecoration(bool useLightBox) : this()
{
this.UseLightbox = useLightbox;
this.UseLightbox = useLightBox;
}

#endregion
Expand Down
2 changes: 1 addition & 1 deletion source/ObjectListView/Rendering/Renderers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ public ObjectListView ListView {
[Browsable(false),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public OLVListSubItem OLVSubItem {
get { return listSubItem as OLVListSubItem; }
get { return listSubItem; }
}

/// <summary>
Expand Down

0 comments on commit 052719c

Please sign in to comment.