Ignore:
Timestamp:
01/07/14 10:59:52 (10 years ago)
Author:
jts21
Message:

Switch to using specialised objects for settings so they make more a bit more sense (now each setting is a single object instead of multiple, and setter functions and default values are less hackish)
Also added tooltips (help strings) to settings, will need to add a way of displaying these (maybe add the idea of a tooltip which is a text item which only appears when hovering over another item?)
Converted all settings over to new format, everything seems to be working fine

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/items/ItemUtils.java

    r601 r655  
    371371                        File file = null;
    372372
    373                         for (String dir : org.expeditee.settings.UserSettings.ImageDirs) {
     373                        for (String dir : org.expeditee.settings.UserSettings.ImageDirs.get()) {
    374374                                file = new File(dir + path);
    375375                                if (file.exists() && !file.isDirectory())
Note: See TracChangeset for help on using the changeset viewer.