Update Default Chat Pictures on Theme Change #115
@@ -18,7 +18,7 @@ import envoy.client.util.IconUtil;
 | 
			
		||||
 */
 | 
			
		||||
public final class ChatControl extends HBox {
 | 
			
		||||
 | 
			
		||||
	private static final Image userIcon = IconUtil.loadIconThemeSensitive("user_icon", 32),
 | 
			
		||||
	private static Image userIcon = IconUtil.loadIconThemeSensitive("user_icon", 32),
 | 
			
		||||
		groupIcon = IconUtil.loadIconThemeSensitive("group_icon", 32);
 | 
			
		||||
 | 
			
		||||
	/**
 | 
			
		||||
@@ -60,4 +60,14 @@ public final class ChatControl extends HBox {
 | 
			
		||||
		}
 | 
			
		||||
		getStyleClass().add("list-element");
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	/**
 | 
			
		||||
	 * Reloads the default icons.
 | 
			
		||||
	 *
 | 
			
		||||
	 * @since Envoy Client v0.3-beta
 | 
			
		||||
	 */
 | 
			
		||||
	public static void reloadDefaultChatIcons() {
 | 
			
		||||
		userIcon	= IconUtil.loadIconThemeSensitive("user_icon", 32);
 | 
			
		||||
		groupIcon	= IconUtil.loadIconThemeSensitive("group_icon", 32);
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -326,6 +326,7 @@ public final class ChatScene implements Restorable, KeyboardMapping {
 | 
			
		||||
 | 
			
		||||
	@Event(ThemeChangeEvent.class)
 | 
			
		||||
	private void onThemeChange() {
 | 
			
		||||
		ChatControl.reloadDefaultChatIcons();
 | 
			
		||||
		settingsButton.setGraphic(
 | 
			
		||||
			new ImageView(IconUtil.loadIconThemeSensitive("settings", DEFAULT_ICON_SIZE)));
 | 
			
		||||
		voiceButton.setGraphic(
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user