Commit 2480aa10 authored by Guillaume Seguin's avatar Guillaume Seguin

Move some files around to cleanup tree

parent 7da6f194
...@@ -15,9 +15,9 @@ ...@@ -15,9 +15,9 @@
import wx import wx
from printrun.xybuttons import XYButtons, XYButtonsMini from .xybuttons import XYButtons, XYButtonsMini
from printrun.zbuttons import ZButtons, ZButtonsMini from .zbuttons import ZButtons, ZButtonsMini
from printrun.graph import Graph from .graph import Graph
from printrun.pronterface_widgets import TempGauge from printrun.pronterface_widgets import TempGauge
from wx.lib.agw.floatspin import FloatSpin from wx.lib.agw.floatspin import FloatSpin
......
...@@ -18,10 +18,10 @@ ...@@ -18,10 +18,10 @@
import wx import wx
from math import log10, floor, ceil from math import log10, floor, ceil
from .utils import install_locale from printrun.utils import install_locale
install_locale('pronterface') install_locale('pronterface')
from bufferedcanvas import BufferedCanvas from .bufferedcanvas import BufferedCanvas
class GraphWindow(wx.Frame): class GraphWindow(wx.Frame):
def __init__(self, root, parent_graph = None, size = (600, 600)): def __init__(self, root, parent_graph = None, size = (600, 600)):
......
...@@ -15,8 +15,8 @@ ...@@ -15,8 +15,8 @@
import wx import wx
import math import math
from bufferedcanvas import BufferedCanvas from .bufferedcanvas import BufferedCanvas
from .utils import imagefile from printrun.utils import imagefile
def sign(n): def sign(n):
if n < 0: return -1 if n < 0: return -1
......
...@@ -14,8 +14,8 @@ ...@@ -14,8 +14,8 @@
# along with Printrun. If not, see <http://www.gnu.org/licenses/>. # along with Printrun. If not, see <http://www.gnu.org/licenses/>.
import wx import wx
from bufferedcanvas import BufferedCanvas from .bufferedcanvas import BufferedCanvas
from .utils import imagefile from printrun.utils import imagefile
def sign(n): def sign(n):
if n < 0: return -1 if n < 0: return -1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment