Skip to content

Commit 265e53e

Browse files
committed
Apparently tab characters don't work on windows wtf
1 parent 1d50b75 commit 265e53e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/services/socket_server.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ class SocketServer {
2222
NetworkInterface.list(type: InternetAddressType.IPv4).then((interfaces) {
2323
var ipLog = 'Possible IP addresses of this machine:';
2424
interfaces.forEach((interface) {
25-
ipLog += '\n\t\t- ${interface.name}';
25+
ipLog += '\n - ${interface.name}';
2626
interface.addresses.forEach((address) {
27-
ipLog += '\n\t\t\t\t- ${address.address}';
27+
ipLog += '\n - ${address.address}';
2828
});
2929
});
3030
_logStreamController.add(LogMessage(LogLevel.info, ipLog));

lib/view/widgets/widget_editor_text_field.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ class WidgetEditorTextField extends StatelessWidget {
7171
String get label {
7272
switch (type) {
7373
case EditorType.positionX:
74-
return 'X\t';
74+
return 'X ';
7575
case EditorType.positionY:
76-
return 'Y\t';
76+
return 'Y ';
7777
case EditorType.imageSize:
7878
return 'Image size';
7979
case EditorType.fontSize:

0 commit comments

Comments
 (0)