The menu created by this code doesn't show the second label (r1) when it's chosen. How can I fix this?
r1 = SetAccuracy[9.87654321012345678, 18];
PopupMenu[Dynamic[x], {1 -> 1, r1 -> r1}]
The menu created by this code doesn't show the second label (r1) when it's chosen. How can I fix this?
r1 = SetAccuracy[9.87654321012345678, 18];
PopupMenu[Dynamic[x], {1 -> 1, r1 -> r1}]
Not sure what you're asking. Just in case:
r1 = SetAccuracy[9.87654321012345678, 18];
{PopupMenu[Dynamic[x], {1 -> 1, r1 -> r1}], Dynamic@x}
