From 4460a0bb12c7d5669727a62634c9a9c8c8b2ab62 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Mon, 11 May 2015 22:09:47 +0100 Subject: [PATCH] renamed textures so less likely to use object directly --- GUI.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GUI.py b/GUI.py index 38d6575..ea32b57 100644 --- a/GUI.py +++ b/GUI.py @@ -54,10 +54,10 @@ class Main_Window: class Options_Window: def __init__(self): - self.textures = Textures() + self.textures_object = Textures() self.options = { "Difficulty": 120, - "Textures": self.textures + "Textures": self.textures_object } def display(self, master):