(application, which)
| 219 | application.updateMenus(); |
| 220 | } |
| 221 | onAppearanceChanged(application, which) { |
| 222 | this.appearance = which; |
| 223 | this.onColorsChanged(application); |
| 224 | if (!application.first) { |
| 225 | application.add(new MainContainer(this)); |
| 226 | this.doOpenView(); |
| 227 | |
| 228 | application.defer("onOpenFileCallback"); |
| 229 | } |
| 230 | } |
| 231 | onColorsChanged(application) { |
| 232 | let appearance = this.colors; |
| 233 | if (appearance == 2) |
nothing calls this directly
no test coverage detected