moreswing.swing.i18n.LMenuItem.scala Maven / Gradle / Ivy
The newest version!
package moreswing.swing.i18n
import scala.swing. { Action, MenuItem }
/** It's [[scala.swing.MenuItem]] with localization support.
*
* @param title0 The title of the menu.
*
* @author myst3r10n
*/
class LMenuItem(title0: String) extends MenuItem(title0) {
def this(a: Action) = {
this("")
action = a
}
}