Skip to content

Commit

Permalink
Fix typo in color setting
Browse files Browse the repository at this point in the history
  • Loading branch information
mtyszler committed Aug 7, 2020
1 parent a79879d commit 2039709
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Binary file modified kit_livingincome.zip
Binary file not shown.
10 changes: 5 additions & 5 deletions kitli_gap2bm.ado
Original file line number Diff line number Diff line change
Expand Up @@ -190,25 +190,25 @@ program define kitli_gap2bm, sortpreserve rclass
local color_other_than_main_income = "ebblue"
}
else {
local color_main_income = "ebblue%30"
local color_other_than_main_income = "ebblue%30"
}
}
capture confirm existence `color_gap'
if _rc == 6 {
if `c(stata_version)' < 15 {
local color_other_than_main_income = "red"
local color_gap = "red"
}
else {
local color_main_income = "red%80"
local color_gap = "red%80"
}
}
capture confirm existence `color_food_value'
if _rc == 6 {
if `c(stata_version)' < 15 {
local color_other_than_main_income = "orange"
local color_food_value = "orange"
}
else {
local color_main_income = "orange%30"
local color_food_value = "orange%30"
}
}

Expand Down

0 comments on commit 2039709

Please sign in to comment.