@@ -149,14 +149,9 @@ drawFuncs = { lst: [
149
149
{ name : 'kind:Folder' , icon : 'img_folder' , icon2 : 'img_folderopen' , noinspect : true } ,
150
150
{ name : nsREX + 'RCanvas' , icon : 'img_canvas' , class : ( ) => import_v7 ( ) . then ( h => h . RCanvasPainter ) , opt : '' , expand_item : fPrimitives } ,
151
151
{ name : nsREX + 'RCanvasDisplayItem' , icon : 'img_canvas' , draw : ( ) => import_v7 ( ) . then ( h => h . drawRPadSnapshot ) , opt : '' , expand_item : fPrimitives } ,
152
- { name : nsREX + 'RHist1Drawable' , icon : 'img_histo1d' , class : ( ) => import_v7 ( 'rh1' ) . then ( h => h . RH1Painter ) , opt : '' } ,
153
- { name : nsREX + 'RHist2Drawable' , icon : 'img_histo2d' , class : ( ) => import_v7 ( 'rh2' ) . then ( h => h . RH2Painter ) , opt : '' } ,
154
- { name : nsREX + 'RHist3Drawable' , icon : 'img_histo3d' , class : ( ) => import_v7 ( 'rh3' ) . then ( h => h . RH3Painter ) , opt : '' } ,
155
- { name : nsREX + 'RHistDisplayItem' , icon : 'img_histo1d' , draw : ( ) => import_v7 ( 'rh3' ) . then ( h => h . drawHistDisplayItem ) , opt : '' } ,
156
152
{ name : nsREX + 'RText' , icon : 'img_text' , draw : ( ) => import_v7 ( 'more' ) . then ( h => h . drawText ) , opt : '' , direct : 'v7' , csstype : 'text' } ,
157
153
{ name : nsREX + 'RFrameTitle' , icon : 'img_text' , draw : ( ) => import_v7 ( ) . then ( h => h . drawRFrameTitle ) , opt : '' , direct : 'v7' , csstype : 'title' } ,
158
154
{ name : nsREX + 'RPaletteDrawable' , icon : 'img_text' , class : ( ) => import_v7 ( 'more' ) . then ( h => h . RPalettePainter ) , opt : '' } ,
159
- { name : nsREX + 'RDisplayHistStat' , icon : 'img_pavetext' , class : ( ) => import_v7 ( 'pave' ) . then ( h => h . RHistStatsPainter ) , opt : '' } ,
160
155
{ name : nsREX + 'RLine' , icon : 'img_graph' , draw : ( ) => import_v7 ( 'more' ) . then ( h => h . drawLine ) , opt : '' , direct : 'v7' , csstype : 'line' } ,
161
156
{ name : nsREX + 'RBox' , icon : 'img_graph' , draw : ( ) => import_v7 ( 'more' ) . then ( h => h . drawBox ) , opt : '' , direct : 'v7' , csstype : 'box' } ,
162
157
{ name : nsREX + 'RMarker' , icon : 'img_graph' , draw : ( ) => import_v7 ( 'more' ) . then ( h => h . drawMarker ) , opt : '' , direct : 'v7' , csstype : 'marker' } ,
@@ -725,9 +720,6 @@ import_v7 = async function(arg) {
725
720
switch ( arg ) {
726
721
case 'more' : return import ( './draw/v7more.mjs' ) ;
727
722
case 'pave' : return import ( './hist/RPavePainter.mjs' ) ;
728
- case 'rh1' : return import ( './hist/RH1Painter.mjs' ) ;
729
- case 'rh2' : return import ( './hist/RH2Painter.mjs' ) ;
730
- case 'rh3' : return import ( './hist/RH3Painter.mjs' ) ;
731
723
}
732
724
return h ;
733
725
} ) ;
0 commit comments