1
0
Fork 0

[client] Fix initial line colour bug

This commit is contained in:
Starbeamrainbowlabs 2017-11-14 15:16:22 +00:00
parent b35445fda9
commit 4f7fe20df8
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ class Pencil
setupInterfaceBindings(inInterface)
{
// Snag the initial colour from the interface
this.currentColour = inInterface.currentColour;
this.currentColour = inInterface.brushIndicator.colour;
// Listen for future colour updates
inInterface.on("colourchange", (function(event) {
this.currentColour = event.newColour;