From: <ker...@us...> - 2024-10-23 17:18:27
|
Revision: 25763 http://sourceforge.net/p/jedit/svn/25763 Author: kerik-sf Date: 2024-10-23 17:18:24 +0000 (Wed, 23 Oct 2024) Log Message: ----------- fixes for GenericGUIUtilities in macros See - https://sourceforge.net/p/jedit/patches/636/ - https://sourceforge.net/p/jedit/patches/637/ - https://sourceforge.net/p/jedit/patches/638/ Modified Paths: -------------- jEdit/trunk/doc/CHANGES.txt jEdit/trunk/macros/Misc/Display_Abbreviations.bsh jEdit/trunk/macros/Misc/Display_Actions.bsh jEdit/trunk/macros/Properties/Insert_Buffer_Properties.bsh Modified: jEdit/trunk/doc/CHANGES.txt =================================================================== --- jEdit/trunk/doc/CHANGES.txt 2024-10-21 19:37:36 UTC (rev 25762) +++ jEdit/trunk/doc/CHANGES.txt 2024-10-23 17:18:24 UTC (rev 25763) @@ -4,12 +4,14 @@ {{{ Version 5.8pre1 -Thanks to Björn Kautler and Eric Le Lay for contributing to this release. +Thanks to Robert Schwenn, Björn Kautler and Eric Le Lay for contributing to this release. {{{ Bug Fixes - allow '(re)' glob in edit mode to contain alternative without enclosing brackets (Eric Le Lay) +- fixes for GenericGUIUtilities in macros (patch #636, #637, #638, Robert + Schwenn) }}} {{{ Miscellaneous Modified: jEdit/trunk/macros/Misc/Display_Abbreviations.bsh =================================================================== --- jEdit/trunk/macros/Misc/Display_Abbreviations.bsh 2024-10-21 19:37:36 UTC (rev 25762) +++ jEdit/trunk/macros/Misc/Display_Abbreviations.bsh 2024-10-23 17:18:24 UTC (rev 25763) @@ -153,7 +153,7 @@ columnNames.addElement(new String(AbbreviationLabel)); columnNames.addElement(new String(ExpansionLabel)); table = new JTable(); - table.setRowHeight(GUIUtilities.defaultRowHeight()); + table.setRowHeight(GenericGUIUtilities.defaultRowHeight()); table.setModel(new DefaultTableModel(data, columnNames)); table.setRowSelectionAllowed(true); /* The next line prevents the table from being edited. Modified: jEdit/trunk/macros/Misc/Display_Actions.bsh =================================================================== --- jEdit/trunk/macros/Misc/Display_Actions.bsh 2024-10-21 19:37:36 UTC (rev 25762) +++ jEdit/trunk/macros/Misc/Display_Actions.bsh 2024-10-23 17:18:24 UTC (rev 25763) @@ -52,7 +52,7 @@ if(label == null) label = NoLabelLabel; else - label = GUIUtilities.prettifyMenuLabel(label); + label = GenericGUIUtilities.prettifyMenuLabel(label); buf.append(name + " : " + label + "\n"); } buf.append("}}}\n\n"); Modified: jEdit/trunk/macros/Properties/Insert_Buffer_Properties.bsh =================================================================== --- jEdit/trunk/macros/Properties/Insert_Buffer_Properties.bsh 2024-10-21 19:37:36 UTC (rev 25762) +++ jEdit/trunk/macros/Properties/Insert_Buffer_Properties.bsh 2024-10-23 17:18:24 UTC (rev 25763) @@ -97,7 +97,7 @@ _entries.copyInto(entries); checkBox = new JCheckBoxList(entries); - checkBox.setRowHeight(GUIUtilities.defaultRowHeight()); + checkBox.setRowHeight(GenericGUIUtilities.defaultRowHeight()); checkBox.addKeyListener(this); content.add(new JScrollPane(checkBox), BorderLayout.CENTER); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |