forked from kk7ds/chirp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[developer] Control fontsize of hex diff/dump display - #1681
Add user specification of the font size to use for the hex diff/dump display, without affecting any other Chirp displays. This is done with a new chirp.config integer property diff_fontsize in a new [developer] section. The default is unchanged at 11. Values between 4 and 144 are accepted; others result in the default. Add a new file README.developers at the top level of the repository to document chirp.config [developer] section properties. #1681
- Loading branch information
Dan Drogichen
committed
Jun 7, 2014
1 parent
27eeda6
commit f12aadb
Showing
2 changed files
with
43 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
This file describes some features in the Chirp Developer's Functions | ||
that allow some customization of their behavior, but are only | ||
accessible through editing the chirp.config file before starting | ||
Chirp, and are not accessible through the GUI. | ||
|
||
The Developer Functions are enabled in the GUI by checking the box | ||
in the "Help" tab. They enable the Image Browser tab in the left | ||
sidebar, and several tools under the View -> Developer tab. | ||
|
||
These directives are similar to other chirp.config entries in syntax. | ||
They reside in the [developer] section in chirp.config. | ||
This section, and all the directives, are not required to be present; | ||
all the options have defaults. | ||
|
||
Here is an example [developer] section listing all the directives, | ||
followed by an explanation of each directive: | ||
|
||
=================================== | ||
[developer] | ||
diff_fontsize = 16 | ||
|
||
=================================== | ||
|
||
diff_fontize = <integer> | ||
This specifies the fontsize used in the hex dump/diff display which is | ||
invoked by selecting View -> Developer -> Diff tabs, and then in the | ||
"Diff Radios" popup, selecting < 0 for either or both memory locations. | ||
|
||
The default size is 11. Values less than 4, greater than 144, or not | ||
recognized as an integer will result in a log message and the default | ||
size will be used. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters