Skip to content

Commit 570f4c2

Browse files
authored
Merge pull request #31 from DanielCardonaRojas/browser_unsigned_ints
Support UInts in browser
2 parents 5169922 + c0e64b1 commit 570f4c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

RealFlags/Sources/RealFlags/Classes/Browser/FlagsBrowserController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ public class FlagsBrowserController: UIViewController {
146146
disabled: !valueIsEditable,
147147
actionType: .setBoolValue(false))
148148
)
149-
case is Int.Type, is Int8.Type, is Int16.Type, is Int32.Type, is Int64.Type:
149+
case is Int.Type, is Int8.Type, is Int16.Type, is Int32.Type, is Int64.Type, is UInt8.Type, is UInt16.Type, is UInt32.Type, is UInt64.Type:
150150
dataSection.childs.append(
151151
FlagBrowserItem(title: "Int Value",
152152
subtitle: "Tap to modify the value",

0 commit comments

Comments
 (0)