Skip to content

Commit

Permalink
Apparently tab characters don't work on windows wtf
Browse files Browse the repository at this point in the history
  • Loading branch information
Rexios80 committed Apr 29, 2021
1 parent 1d50b75 commit 265e53e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/services/socket_server.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ class SocketServer {
NetworkInterface.list(type: InternetAddressType.IPv4).then((interfaces) {
var ipLog = 'Possible IP addresses of this machine:';
interfaces.forEach((interface) {
ipLog += '\n\t\t- ${interface.name}';
ipLog += '\n - ${interface.name}';
interface.addresses.forEach((address) {
ipLog += '\n\t\t\t\t- ${address.address}';
ipLog += '\n - ${address.address}';
});
});
_logStreamController.add(LogMessage(LogLevel.info, ipLog));
Expand Down
4 changes: 2 additions & 2 deletions lib/view/widgets/widget_editor_text_field.dart
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ class WidgetEditorTextField extends StatelessWidget {
String get label {
switch (type) {
case EditorType.positionX:
return 'X\t';
return 'X ';
case EditorType.positionY:
return 'Y\t';
return 'Y ';
case EditorType.imageSize:
return 'Image size';
case EditorType.fontSize:
Expand Down

0 comments on commit 265e53e

Please sign in to comment.