Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ios/Classes/Method/BrotherUtils.m
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,7 @@ + (BRLMQLPrintSettings *) qlPrintSettingsFromMapWithValue:(NSDictionary<NSString

printerSettings.labelSize = [BrotherUtils qlLabelSizeWithName:labelName];
printerSettings.autoCut = [[map objectForKey:@"isAutoCut"] isEqual:@(YES)];
printerSettings.cutAtEnd = [[map objectForKey:@"isEndCut"] isEqual:@(YES)];
printerSettings.cutAtEnd = [[map objectForKey:@"isCutAtEnd"] isEqual:@(YES)];
printerSettings.resolution = [BrotherUtils printResolutionFromMapWithValue:dartPrintQuality];

// TODO Extract info from map.
Expand Down Expand Up @@ -2283,7 +2283,7 @@ + (NSString *) colorTypeToNameWithValue:(ColorType) colorType {
NSDictionary<NSString*, NSObject *> * dartLabelInfoStatus = @{
@"labelNameIndex": [BrotherUtils labelIdTypeToNumberWithValue: [status labelID ]],
@"isAutoCut": @FALSE, // TODO
@"isEndCut": @FALSE, // TODO
@"isCutAtEnd": @FALSE, // TODO
@"isHalfCut": @FALSE, // TODO
@"isSpecialTape": @FALSE, // TODO
@"isCutMark": @FALSE, // TODO
Expand Down