Rename menu item

Changed "File > Assemble" to "File > Generate Assembly".

Also, correctly mark a read-only text field as such.
This commit is contained in:
Andy McFadden 2024-04-19 14:16:30 -07:00
parent 89df3278bc
commit 8532cfb433
4 changed files with 5 additions and 4 deletions

View File

@ -75,7 +75,7 @@ limitations under the License.
<DockPanel Grid.Column="3" Grid.Row="2">
<TextBlock DockPanel.Dock="Left" Margin="0,1,0,0">Work directory:</TextBlock>
<TextBox DockPanel.Dock="Right" Name="workDirectoryTextBox" Margin="8,0,0,0"
Text="C:\this\that\theother"/>
IsReadOnly="True" Text="C:\this\that\theother"/>
</DockPanel>
</Grid>

View File

@ -57,7 +57,7 @@ limitations under the License.
</Style>
<RoutedUICommand x:Key="AboutCmd" Text="About..."/>
<RoutedUICommand x:Key="AssembleCmd" Text="Assemble...">
<RoutedUICommand x:Key="AssembleCmd" Text="Generate Assembly...">
<RoutedUICommand.InputGestures>
<KeyGesture>Ctrl+Shift+A</KeyGesture>
</RoutedUICommand.InputGestures>

View File

@ -19,7 +19,7 @@ the target assembler, will recreate the original data file exactly.
Every assembler is different, so support must be added to SourceGen
for each.</p>
<p>The generation / assembly dialog can be opened with
<samp>File &gt; Assemble</samp>.</p>
<samp>File &gt; Generate Assembly</samp>.</p>
<p>If you want to show code to others, perhaps by adding a page to
your web site, you can "export" the formatted code as text or HTML.
This is explained in more detail <a href="#export-source">below</a>.

View File

@ -91,7 +91,8 @@
</div>
<div class="grid-item-text">
<p>You can generate assembly source code from the disassembled data.
Select <samp>File &gt; Assemble</samp> (or hit <kbd class="key">Ctrl+Shift+A</kbd>)
Select <samp>File &gt; Generate Assembly</samp>
(or hit <kbd class="key">Ctrl+Shift+A</kbd>)
to open the source generation and assembly dialog.</p>
</div>
</div>