File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " 2a-emulator"
3
- version = " 3.0.5 "
3
+ version = " 3.0.6 "
4
4
authors = [
" Malte Tammena <[email protected] >" ]
5
5
edition = " 2018"
6
6
Original file line number Diff line number Diff line change @@ -19,14 +19,14 @@ use crate::helpers;
19
19
use crate :: machine:: State ;
20
20
use crate :: tui:: Tui ;
21
21
22
- pub static MINIMUM_ALLOWED_WIDTH : u16 = 76 ;
23
- pub static MINIMUM_ALLOWED_HEIGHT : u16 = 25 ;
24
-
22
+ pub const MINIMUM_ALLOWED_WIDTH : u16 = 76 ;
23
+ pub const MINIMUM_ALLOWED_HEIGHT : u16 = 25 ;
25
24
const RIGHT_COLUMN_WIDTH : u16 = 35 ;
26
25
const PROGRAM_AREA_HEIGHT : u16 = 7 ;
27
26
const FREQ_AREA_HEIGHT : u16 = 6 ;
28
27
const INPUT_AREA_HEIGHT : u16 = 3 ;
29
28
const HIGHLIGHT_DURATION : Duration = Duration :: from_millis ( 500 ) ;
29
+
30
30
lazy_static ! {
31
31
static ref BLK_ERROR : Block <' static > = Block :: default ( )
32
32
. title( "Error" )
You can’t perform that action at this time.
0 commit comments