Example #1
0
 public static void ContextualClose(this NuklearContext ctx)
 {
     if (ctx == null || ctx.current == null || ctx.current.Layout == null)
     {
         return;
     }
     ctx.PopupClose();
 }
Example #2
0
 public static void nk_tooltip_end(this NuklearContext ctx)
 {
     if (ctx == null || ctx.current == null)
     {
         return;
     }
     ctx.PopupClose();
     ctx.PopupEnd();
 }