diff options
Diffstat (limited to 'globalDisplayOptions.go')
| -rw-r--r-- | globalDisplayOptions.go | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/globalDisplayOptions.go b/globalDisplayOptions.go index 5554547..8d3db24 100644 --- a/globalDisplayOptions.go +++ b/globalDisplayOptions.go @@ -7,23 +7,25 @@ import ( ) func hideFunction(r *repolist.RepoRow) { - if r.Status.IsDirty() { - r.Show() - return - } - if me.autoHideReadOnly.Checked() { - if r.Status.ReadOnly() { - r.Hide() + /* + if r.Status.IsDirty() { + r.Show() return } - } - if me.autoHidePerfect.Checked() { - if r.IsPerfect() { - r.Hide() - return + if me.autoHideReadOnly.Checked() { + if r.Status.ReadOnly() { + r.Hide() + return + } } - } - r.Show() + if me.autoHidePerfect.Checked() { + if r.IsPerfect() { + r.Hide() + return + } + } + r.Show() + */ } func globalDisplayOptions(vbox *gui.Node) { |
