Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion configs/sim/gmoccapy/lathe_configs/gmoccapy_lathe.pref
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,6 @@ offset_axis_r = 50.0
radius offset_axis_x = 0
use_toolmeasurement = False
kbd_height = 250
icon_theme = None
icon_theme = classic
hide_tooltips = False

2 changes: 1 addition & 1 deletion configs/sim/gmoccapy/lathe_configs/lathe.ini
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ MAX_SPINDLE_OVERRIDE = 1.2
MIN_SPINDLE_OVERRIDE = .5

# Prefix to be used
PROGRAM_PREFIX = ../../nc_files/:.
PROGRAM_PREFIX = ../../nc_files/

# Introductory graphic
INTRO_GRAPHIC = linuxcnc.gif
Expand Down
2 changes: 1 addition & 1 deletion configs/sim/gmoccapy/lathe_configs/lathe_macros.ini
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ MIN_SPINDLE_OVERRIDE = .5


# Prefix to be used
PROGRAM_PREFIX = ../../nc_files/:./
PROGRAM_PREFIX = ../../nc_files/

# Introductory graphic
INTRO_GRAPHIC = linuxcnc.gif
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ DISPLAY = gmoccapy
CYCLE_TIME = 0.200
POSITION_OFFSET = RELATIVE
POSITION_FEEDBACK = ACTUAL
PROGRAM_PREFIX = ../../nc_files/
PROGRAM_PREFIX = ../../../nc_files/
INTRO_GRAPHIC = linuxcnc.gif
INTRO_TIME = 5

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ CYCLE_TIME = 0.200
POSITION_OFFSET = RELATIVE
POSITION_FEEDBACK = ACTUAL
MAX_FEED_OVERRIDE = 2.0
PROGRAM_PREFIX = ../../nc_files/
PROGRAM_PREFIX = ../../../nc_files/
INTRO_GRAPHIC = linuxcnc.gif
INTRO_TIME = 5
MIN_SPINDLE_OVERRIDE = 0.25
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ DISPLAY = gmoccapy
POSITION_OFFSET = RELATIVE
POSITION_FEEDBACK = ACTUAL
MAX_FEED_OVERRIDE = 2
PROGRAM_PREFIX = ../../nc_files
PROGRAM_PREFIX = ../../../nc_files
INTRO_GRAPHIC = emc2.gif
INTRO_TIME = 1

Expand Down
Binary file modified docs/src/gui/images/gmoccapy_3_axis.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/src/gui/images/gmoccapy_3_axis_mid.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/src/gui/images/gmoccapy_5_axis.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/src/gui/images/gmoccapy_5_axis_mid.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 1 addition & 4 deletions lib/python/gladevcp/iconview.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class IconFileSelection(Gtk.Box):
'icon_size' : (GObject.TYPE_INT, 'Icon Size', 'Sets the size of the displayed icon',
12, 96, 48, GObject.ParamFlags.READWRITE | GObject.ParamFlags.CONSTRUCT),
'start_dir' : (GObject.TYPE_STRING, 'start directory', 'Sets the directory to start in',
"/", GObject.ParamFlags.READWRITE | GObject.ParamFlags.CONSTRUCT),
".", GObject.ParamFlags.READWRITE | GObject.ParamFlags.CONSTRUCT),
'jump_to_dir' : (GObject.TYPE_STRING, 'jump to directory', 'Sets the directory to jump to ',
"~", GObject.ParamFlags.READWRITE | GObject.ParamFlags.CONSTRUCT),
'filetypes' : (GObject.TYPE_STRING, 'file filter', 'Sets the filter for the file types to be shown',
Expand Down Expand Up @@ -298,9 +298,6 @@ def _fill_store(self):
number = 0
dirs = []
files = []
# TODO: Why is iconview looking in "/" ?
# if self.cur_dir == "/":
# LOG.info("current dir is /")

for fl in os.listdir(self.cur_dir):
# we don't want to add hidden files
Expand Down
Loading