Skip to content

Commit c781abe

Browse files
committed
250729.1
1 parent 477f94d commit c781abe

File tree

5 files changed

+9
-11
lines changed

5 files changed

+9
-11
lines changed
Binary file not shown.

easycoder/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
from .ec_timestamp import *
1212
from .ec_value import *
1313

14-
__version__ = "250726.2"
14+
__version__ = "250729.1"

easycoder/ec_core.py

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1753,15 +1753,13 @@ def r_unlock(self, command):
17531753

17541754
# Use a plugin module
17551755
def k_use(self, command):
1756-
if self.nextIs('plugin'):
1757-
if self.nextIs('graphics'):
1758-
print('Loading graphics module')
1759-
from .ec_pyside import Graphics
1760-
self.program.graphics = Graphics
1761-
self.program.useClass(Graphics)
1762-
# from .ec_keyboard import Keyboard
1763-
# self.program.useClass(Keyboard)
1764-
return True
1756+
self.skip('plugin')
1757+
if self.nextIs('graphics'):
1758+
print('Loading graphics module')
1759+
from .ec_pyside import Graphics
1760+
self.program.graphics = Graphics
1761+
self.program.useClass(Graphics)
1762+
return True
17651763
return False
17661764

17671765
# Declare a general-purpose variable

testrc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
import os
44
from easycoder import Program
55

6-
os.chdir('../../rbr/roombyroom/Controller/ui')
6+
os.chdir('../../rbr/')
77
Program('rbrconf.ecs').start()

0 commit comments

Comments
 (0)