mirror of
https://github.com/m1k1o/neko.git
synced 2025-07-28 14:08:29 +02:00
use types.Cursor.
This commit is contained in:
parent
1025eedc22
commit
28c22a254b
4 changed files with 10 additions and 12 deletions
|
@ -53,8 +53,8 @@ func (session *SessionCtx) IsHost() bool {
|
|||
return session.manager.GetHost() == session
|
||||
}
|
||||
|
||||
func (session *SessionCtx) SetCursor(x, y int) {
|
||||
session.manager.SetCursor(x, y, session)
|
||||
func (session *SessionCtx) SetCursor(cursor types.Cursor) {
|
||||
session.manager.SetCursor(cursor, session)
|
||||
}
|
||||
|
||||
// ---
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue