summaryrefslogtreecommitdiff
path: root/common.go
diff options
context:
space:
mode:
Diffstat (limited to 'common.go')
-rw-r--r--common.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/common.go b/common.go
index bde96ba..1a8c4e2 100644
--- a/common.go
+++ b/common.go
@@ -65,6 +65,14 @@ func (rs *RepoStatus) Ready() bool {
return rs.ready
}
+func (rs *RepoStatus) Horizontal() {
+ rs.window.Horizontal()
+}
+
+func (rs *RepoStatus) Vertical() {
+ rs.window.Vertical()
+}
+
func (rs *RepoStatus) Initialized() bool {
log.Log(CHANGE, "checking Initialized()")
if rs == nil {return false}