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