Skip to content

Commit

Permalink
Merge pull request #31 from DanielCardonaRojas/browser_unsigned_ints
Browse files Browse the repository at this point in the history
Support UInts in browser
  • Loading branch information
malcommac committed Apr 2, 2024
2 parents 5169922 + c0e64b1 commit 570f4c2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public class FlagsBrowserController: UIViewController {
disabled: !valueIsEditable,
actionType: .setBoolValue(false))
)
case is Int.Type, is Int8.Type, is Int16.Type, is Int32.Type, is Int64.Type:
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:
dataSection.childs.append(
FlagBrowserItem(title: "Int Value",
subtitle: "Tap to modify the value",
Expand Down

0 comments on commit 570f4c2

Please sign in to comment.