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/actions/Navigation.java

    r570 r655  
    4242         */
    4343        public static void GotoHome() {
    44                 FrameUtils.DisplayFrame(UserSettings.HomeFrame);
     44                FrameUtils.DisplayFrame(UserSettings.HomeFrame.get());
    4545        }
    4646
     
    5454         */
    5555        public static void GotoProfile() {
    56                 FrameUtils.DisplayFrame(UserSettings.ProfileName + '1');
     56                FrameUtils.DisplayFrame(UserSettings.ProfileName.get() + '1');
    5757        }
    5858
Note: See TracChangeset for help on using the changeset viewer.