@@ -44,7 +44,7 @@ static RibbonPanel AddOnePanel()
4444 {
4545 //https://forums.autodesk.com/t5/net/create-custom-ribbon-tab-and-buttons-for-autocad-mechanical-2011/td-p/2834343
4646 RibbonPanelSource rps = new RibbonPanelSource ( ) ;
47- rps . Title = "Autocad Python Shell" ;
47+ rps . Title = "Cad Python Shell" ;
4848 RibbonPanel rp = new RibbonPanel ( ) ;
4949 rp . Source = rps ;
5050 //Create a Command Item that the Dialog Launcher can use,
@@ -57,9 +57,9 @@ static RibbonPanel AddOnePanel()
5757 rb . Orientation = Orientation . Vertical ;
5858 rb . AllowInStatusBar = true ;
5959 rb . Size = RibbonItemSize . Large ;
60- rb . Name = "Run APS " ;
60+ rb . Name = "Run CPS " ;
6161 rb . ShowText = true ;
62- rb . Text = "Run APS " ;
62+ rb . Text = "Run CPS " ;
6363 var addinAssembly = typeof ( IronPythonConsoleApp ) . Assembly ;
6464 rb . Image = CADPythonShellApplication . GetEmbeddedPng ( addinAssembly , "CADPythonShell.Resources.Python-16.png" ) ;
6565 rb . LargeImage = CADPythonShellApplication . GetEmbeddedPng ( addinAssembly , "CADPythonShell.Resources.Python-32.png" ) ;
@@ -70,9 +70,9 @@ static RibbonPanel AddOnePanel()
7070 rb2 . Orientation = Orientation . Vertical ;
7171 rb2 . AllowInStatusBar = true ;
7272 rb2 . Size = RibbonItemSize . Large ;
73- rb2 . Name = "Configure APS " ;
73+ rb2 . Name = "Configure CPS " ;
7474 rb2 . ShowText = true ;
75- rb2 . Text = "Configure APS " ;
75+ rb2 . Text = "Configure CPS " ;
7676 rb2 . Image = CADPythonShellApplication . GetEmbeddedPng ( addinAssembly , "CADPythonShell.Resources.Settings-16.png" ) ;
7777 rb2 . LargeImage = CADPythonShellApplication . GetEmbeddedPng ( addinAssembly , "CADPythonShell.Resources.Settings-32.png" ) ;
7878
0 commit comments