This commit is contained in:
downthecrop 2025-08-13 14:32:21 -07:00
parent 214c5a7b2e
commit 7a5b0f76b4

View file

@ -155,7 +155,7 @@ object ReflectiveEditorView {
// Plugin name and version (using package name as in original implementation) // Plugin name and version (using package name as in original implementation)
val packageName = plugin.javaClass.`package`.name val packageName = plugin.javaClass.`package`.name
val nameLabel = JLabel("$packageName v${pluginInfo.version}") val nameLabel = JLabel("$packageName")
nameLabel.foreground = secondaryColor nameLabel.foreground = secondaryColor
nameLabel.font = Font("RuneScape Small", Font.PLAIN, 16) nameLabel.font = Font("RuneScape Small", Font.PLAIN, 16)
@ -266,7 +266,7 @@ object ReflectiveEditorView {
} }
val packageName = plugin.javaClass.`package`.name val packageName = plugin.javaClass.`package`.name
val titleLabel = JLabel("$packageName") val titleLabel = JLabel("$packageName v${pluginInfo.version}")
titleLabel.foreground = secondaryColor titleLabel.foreground = secondaryColor
titleLabel.font = Font("RuneScape Small", Font.PLAIN, 16) titleLabel.font = Font("RuneScape Small", Font.PLAIN, 16)
titleLabel.horizontalAlignment = SwingConstants.CENTER titleLabel.horizontalAlignment = SwingConstants.CENTER