<?xml version="1.0"?>
<Denemo>
  <merge>
    <title>A Denemo Keymap</title>
    <author>AT, JRR, RTS</author>
    <map>
      <row>
        <action>SetFontSize</action>
        <scheme>;;; d-SetFontSize
(define SetScoreSize::Size (d-ScoreProperties "query=fontsize"))	
(set! SetScoreSize::Size  (d-GetUserInput "Overall Score Sizing"  "Give font size to use" SetScoreSize::Size))
(if (boolean? SetScoreSize::Size)		
	(set! SetScoreSize::Size (d-ScoreProperties "query=fontsize")))						       
(d-ScoreProperties (string-append "fontsize="   SetScoreSize::Size))		
(d-RefreshDisplay)</scheme>
        <label>(Print)Set Overall Score Size</label>
        <tooltip>Choose the font size of for the score, and hence how much space it takes up.</tooltip>
      </row>
    </map>
  </merge>
</Denemo>
