mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-06 09:55:40 +00:00
ui/measure: rename Faces.Cfg to Config
Signed-off-by: Elias Naur <mail@eliasnaur.com>
This commit is contained in:
@@ -17,7 +17,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type Faces struct {
|
type Faces struct {
|
||||||
Cfg *ui.Config
|
Config *ui.Config
|
||||||
faceCache map[faceKey]*textFace
|
faceCache map[faceKey]*textFace
|
||||||
layoutCache map[layoutKey]cachedLayout
|
layoutCache map[layoutKey]cachedLayout
|
||||||
pathCache map[pathKey]cachedPath
|
pathCache map[pathKey]cachedPath
|
||||||
@@ -103,7 +103,7 @@ func (f *Faces) init() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (f *textFace) Layout(str string, singleLine bool, maxWidth int) *text.Layout {
|
func (f *textFace) Layout(str string, singleLine bool, maxWidth int) *text.Layout {
|
||||||
ppem := fixed.Int26_6(f.faces.Cfg.Val(f.size)*64 + .5)
|
ppem := fixed.Int26_6(f.faces.Config.Val(f.size)*64 + .5)
|
||||||
lk := layoutKey{
|
lk := layoutKey{
|
||||||
f: f.font.Font,
|
f: f.font.Font,
|
||||||
ppem: ppem,
|
ppem: ppem,
|
||||||
@@ -122,7 +122,7 @@ func (f *textFace) Layout(str string, singleLine bool, maxWidth int) *text.Layou
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (f *textFace) Path(str text.String) ui.OpBlock {
|
func (f *textFace) Path(str text.String) ui.OpBlock {
|
||||||
ppem := fixed.Int26_6(f.faces.Cfg.Val(f.size)*64 + .5)
|
ppem := fixed.Int26_6(f.faces.Config.Val(f.size)*64 + .5)
|
||||||
pk := pathKey{
|
pk := pathKey{
|
||||||
f: f.font.Font,
|
f: f.font.Font,
|
||||||
ppem: ppem,
|
ppem: ppem,
|
||||||
|
|||||||
Reference in New Issue
Block a user