소스 검색

removed unneeded calls to Ui.Refresh

master
Tim Cooper 10 년 전
부모
커밋
c885441d8e
1개의 변경된 파일0개의 추가작업 그리고 6개의 파일을 삭제
  1. +0
    -6
      ui.go

+ 0
- 6
ui.go 파일 보기

@@ -33,7 +33,6 @@ func (b *Barnard) UpdateInputStatus(status string) {
func (b *Barnard) AddOutputLine(line string) {
now := time.Now()
b.UiOutput.AddLine(fmt.Sprintf("[%02d:%02d:%02d] %s", now.Hour(), now.Minute(), now.Second(), line))
b.Ui.Refresh()
}

func (b *Barnard) AddOutputMessage(sender *gumble.User, message string) {
@@ -66,27 +65,22 @@ func (b *Barnard) OnQuitPress(ui *uiterm.Ui, key uiterm.Key) {

func (b *Barnard) OnClearPress(ui *uiterm.Ui, key uiterm.Key) {
b.UiOutput.Clear()
b.Ui.Refresh()
}

func (b *Barnard) OnScrollOutputUp(ui *uiterm.Ui, key uiterm.Key) {
b.UiOutput.ScrollUp()
b.Ui.Refresh()
}

func (b *Barnard) OnScrollOutputDown(ui *uiterm.Ui, key uiterm.Key) {
b.UiOutput.ScrollDown()
b.Ui.Refresh()
}

func (b *Barnard) OnScrollOutputTop(ui *uiterm.Ui, key uiterm.Key) {
b.UiOutput.ScrollTop()
b.Ui.Refresh()
}

func (b *Barnard) OnScrollOutputBottom(ui *uiterm.Ui, key uiterm.Key) {
b.UiOutput.ScrollBottom()
b.Ui.Refresh()
}

func (b *Barnard) OnFocusPress(ui *uiterm.Ui, key uiterm.Key) {


불러오는 중...
취소
저장