فهرست منبع

refactor: remove extraneous accessor

ayn2op 5 ماه پیش
والد
کامیت
dcc607cf02
1فایلهای تغییر یافته به همراه4 افزوده شده و 5 حذف شده
  1. 4 5
      cmd/message_input.go

+ 4 - 5
cmd/message_input.go

@@ -73,6 +73,10 @@ func newMessageInput(cfg *config.Config) *messageInput {
 
 	mi.Box = ui.ConfigureBox(mi.Box, &cfg.Theme)
 	mi.SetInputCapture(mi.onInputCapture)
+	mi.
+		SetPlaceholder("Select a channel to start chatting").
+		SetPlaceholderStyle(tcell.StyleDefault.Dim(true)).
+		SetDisabled(true)
 
 	mi.mentionsList.Box = ui.ConfigureBox(mi.mentionsList.Box, &mi.cfg.Theme)
 	mi.mentionsList.
@@ -84,11 +88,6 @@ func newMessageInput(cfg *config.Config) *messageInput {
 	b.BottomLeft, b.BottomRight = b.BottomT, b.BottomT
 	mi.mentionsList.SetBorderSet(b)
 
-	mi.TextArea.
-		SetPlaceholder("Select a channel to start chatting").
-		SetPlaceholderStyle(tcell.StyleDefault.Dim(true)).
-		SetDisabled(true)
-
 	return mi
 }