Browse Source

Merge pull request #513 from csmith/master

Remove who settings.
pull/514/head
Greg Holmes 9 years ago
parent
commit
f1fe1519f6

+ 0
- 2
res/com/dmdirc/config/defaults/default/defaults View File

@@ -63,7 +63,6 @@ general:
63 63
   silencechar=.
64 64
   submitErrors=false
65 65
   ui=swing
66
-  whotime=60000
67 66
 
68 67
 notifications:
69 68
   authNotice=server
@@ -185,7 +184,6 @@ treeview:
185 184
 channel:
186 185
   splitusermodes=false
187 186
   hideduplicatemodes=false
188
-  sendwho=false
189 187
   showmodeprefix=true
190 188
   topichistorysize=10
191 189
   encoding=UTF-8

+ 0
- 8
src/com/dmdirc/config/prefs/PreferencesDialogModel.java View File

@@ -189,14 +189,6 @@ public class PreferencesDialogModel {
189 189
                 "channel", "splitusermodes", "Split user modes",
190 190
                 "Show individual mode lines for each mode change that affects"
191 191
                 + " a user (e.g. op, devoice)", configManager, identity));
192
-        category.addSetting(new PreferencesSetting(PreferencesType.BOOLEAN,
193
-                "channel", "sendwho", "Send channel WHOs",
194
-                "Request information (away state, hostname, etc) on channel "
195
-                + "users automatically", configManager, identity));
196
-        category.addSetting(new PreferencesSetting(PreferencesType.DURATION,
197
-                "general", "whotime", "Who request interval",
198
-                "How often to send WHO requests for a channel (if enabled)",
199
-                configManager, identity));
200 192
         category.addSetting(new PreferencesSetting(PreferencesType.BOOLEAN,
201 193
                 "channel", "showmodeprefix", "Show mode prefix",
202 194
                 "Prefix users' names with their mode (e.g. @) in channels",

+ 0
- 5
src/com/dmdirc/config/prefs/PreferencesManager.java View File

@@ -148,11 +148,6 @@ public class PreferencesManager {
148 148
                 "Show individual mode lines for each mode change that affects"
149 149
                 + " a user (e.g. op, devoice)",
150 150
                 manager, identity));
151
-        category.addSetting(new PreferencesSetting(PreferencesType.BOOLEAN,
152
-                "channel", "sendwho", "Send channel WHOs",
153
-                "Request information (away state, hostname, etc) on channel "
154
-                + "users automatically",
155
-                manager, identity));
156 151
         category.addSetting(new PreferencesSetting(PreferencesType.BOOLEAN,
157 152
                 "channel", "showmodeprefix", "Show mode prefix",
158 153
                 "Prefix users' names with their mode (e.g. @) in channels",

Loading…
Cancel
Save