Skip to content

Commit

Permalink
Made var section open
Browse files Browse the repository at this point in the history
In order to allow it to be overwritten by a row which subclasses it. This is needed for the new custom row `SplitRow`. `SplitRow` enables to put two Eureka rows side by side into one UITableViewCell.
  • Loading branch information
Marco Betschart committed Dec 2, 2017
1 parent 0e3babc commit be4c01d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/BaseRow.swift
Expand Up @@ -98,7 +98,7 @@ open class BaseRow: BaseRowType {
public var isHidden: Bool { return hiddenCache }

/// The section to which this row belongs.
public weak var section: Section?
open weak var section: Section?

public required init(tag: String? = nil) {
self.tag = tag
Expand Down

1 comment on commit be4c01d

@liorp
Copy link

@liorp liorp commented on be4c01d Dec 17, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any progress on merging this commit?

Please sign in to comment.