mirror of
https://github.com/michaelrausch/Party-Parrots-At-Sea.git
synced 2026-05-09 14:28:43 +00:00
- Added methods for validating direct connection, Port Number Complete, Host Name not Complete.
- Added No Servers found Message - Found a potential bug with windows machines not running the correct service to handle Bonjour Service Addresses. tags: #story[1245]
This commit is contained in:
@@ -50,9 +50,8 @@ public class BoatCustomizeController implements Initializable{
|
||||
@FXML
|
||||
public void submitCustomization() {
|
||||
socketThread.sendCustomizationRequest(CustomizeRequestType.NAME, boatName.getText().getBytes());
|
||||
// TODO: 16/08/17 ajm412: Turn colors into byte array.
|
||||
Color color = colorPicker.getValue();
|
||||
|
||||
Color color = colorPicker.getValue();
|
||||
short red = (short) (color.getRed() * 255);
|
||||
short green = (short) (color.getGreen() * 255);
|
||||
short blue = (short) (color.getBlue() * 255);
|
||||
|
||||
Reference in New Issue
Block a user