@@ -6516,14 +6516,7 @@ on revIDETogglePaletteView
65166516 unlock screen
65176517end revIDETogglePaletteView
65186518
6519- on revIDEPopupContextualMenu pTargets
6520- dispatch "revMenubarPopupContextualMenu" to stack revIDEPaletteToStackName("menubar" ) with pTargets
6521- end revIDEPopupContextualMenu
6522-
6523- local sPluginsA
6524- on revIDEUpdatePlugins
6525- global gREVStartupList , gREVShutdownlist , gREVDontLoadMenus
6526-
6519+ function revIDEGetAllPlugins
65276520 local tUserPlugins
65286521 put revAbsoluteFolderListing(revEnvironmentUserPluginsPath()) into tUserPlugins
65296522
@@ -6539,6 +6532,19 @@ on revIDEUpdatePlugins
65396532 if tDevelopmentPlugins is not empty then
65406533 put revCombineFilePaths(tFinal ,tDevelopmentPlugins ) into tFinal
65416534 end if
6535+ return tFinal
6536+ end revIDEGetAllPlugins
6537+
6538+ on revIDEPopupContextualMenu pTargets
6539+ dispatch "revMenubarPopupContextualMenu" to stack revIDEPaletteToStackName("menubar" ) with pTargets
6540+ end revIDEPopupContextualMenu
6541+
6542+ local sPluginsA
6543+ on revIDEUpdatePlugins
6544+ global gREVStartupList , gREVShutdownlist , gREVDontLoadMenus
6545+
6546+ local tFinal
6547+ put revIDEGetAllPlugins() into tFinal
65426548
65436549 put empty into gREVStartupList
65446550 put empty into gREVShutdownList
@@ -8520,7 +8526,9 @@ on ideStyleText pSelectedChunk, pSelectedObject, pIsField, pWhich, pValue
85208526
85218527 if pWhich is "superscript" then put - 4 into tTextShiftAmount
85228528 else put 4 into tTextShiftAmount
8523- if the textShift of tTarget is a number then put 0 into tTextShiftAmount
8529+ if the textShift of tTarget is a number AND the textShift of tTarget is not 0 then
8530+ put 0 into tTextShiftAmount
8531+ end if
85248532
85258533 set the textShift of tTarget to tTextShiftAmount
85268534 break
0 commit comments