qt.go icon indicating copy to clipboard operation
qt.go copied to clipboard

go get -v -u github.com/kitech/qt.go

Open hippylover opened this issue 5 years ago • 1 comments

$ go get -v -u github.com/kitech/qt.go
github.com/kitech/qt.go (download)
github.com/kitech/qt.go is a directory, should be a Go file

Do i need to worry about this? I cannot see any text at all with the provided example:

package main

import (
	"os"

	"github.com/kitech/qt.go/qtwidgets"
)

func main() {
	app := qtwidgets.NewQApplication(len(os.Args), os.Args, 0)
	btn := qtwidgets.NewQPushButton1("hello qt.go", nil)
	btn.Show()
	app.Exec()
}

Nor with any code of my own. I don't know if it is related.

hippylover avatar Oct 20 '19 11:10 hippylover

fmt.Println(app.Font().ToString()) // returns:
Verdana,10,-1,5,50,0,0,0,0,0,Regular

The underlaying widget(in this example a button) changes size if i set another fontsize for example. But there's no text to be seen...

hippylover avatar Oct 20 '19 12:10 hippylover