9 lines
160 B
Go
9 lines
160 B
Go
|
package main
|
||
|
|
||
|
import "github.com/andlabs/ui"
|
||
|
|
||
|
func (mh *modelHandler) NumRows(m *ui.TableModel) int {
|
||
|
// log.Println("NumRows() with m=", m)
|
||
|
return mh.rows
|
||
|
}
|