mirror of
https://github.com/NGSolve/netgen.git
synced 2024-12-26 05:50:32 +05:00
fix python import of non-gui builds
This commit is contained in:
parent
ffdb9378b5
commit
81c1d46db0
@ -16,9 +16,11 @@ del os
|
||||
|
||||
from . import libngpy
|
||||
|
||||
_Redraw = libngpy.meshvis._Redraw
|
||||
if config.USE_GUI:
|
||||
global _Redraw, Redraw
|
||||
_Redraw = libngpy.meshvis._Redraw
|
||||
|
||||
def RedrawWithEventHandling(*args, **kwargs):
|
||||
def RedrawWithEventHandling(*args, **kwargs):
|
||||
try:
|
||||
if libngpy.meshvis._Redraw(*args, **kwargs):
|
||||
import netgen
|
||||
@ -29,4 +31,4 @@ def RedrawWithEventHandling(*args, **kwargs):
|
||||
except:
|
||||
pass
|
||||
|
||||
Redraw = RedrawWithEventHandling
|
||||
Redraw = RedrawWithEventHandling
|
||||
|
Loading…
Reference in New Issue
Block a user