Results 2 comments of Roy Chan

``` import os # insert the GTK3 Runtime folder at the beginning GTK_FOLDER = r'C:\Program Files\GTK3-Runtime Win64\bin' os.environ['PATH'] = GTK_FOLDER + os.pathsep + os.environ.get('PATH', '') from blabel import LabelWriter ```...

我在用苹果Safari。 问题解决了,global.js 里的 drawPoint 需要更新: ``` function drawPoint(context, x, y, color = '#f00', width = 1) { context.beginPath(); context.lineCap = 'round'; context.moveTo(x-0.1, y-0.1); context.lineTo(x+0.1, y+0.1); context.closePath(); context.lineWidth = width; context.strokeStyle...