Increase dialog size

This commit is contained in:
Bob Mottram 2016-03-05 09:16:51 +00:00
parent ba8c587a0d
commit 8a67e4a593
2 changed files with 4 additions and 4 deletions

View File

@ -846,11 +846,11 @@ function block_unblock_email {
if [[ $BLOCK == "y"* || $BLOCK == "Y"* ]]; then if [[ $BLOCK == "y"* || $BLOCK == "Y"* ]]; then
${PROJECT_NAME}-ignore -u $SELECTED_USERNAME -e "$BLOCK_EMAIL" ${PROJECT_NAME}-ignore -u $SELECTED_USERNAME -e "$BLOCK_EMAIL"
dialog --title $"Block an email" \ dialog --title $"Block an email" \
--msgbox "Email from $BLOCK_EMAIL to $SELECTED_USERNAME blocked" 6 40 --msgbox "Email from $BLOCK_EMAIL to $SELECTED_USERNAME blocked" 6 75
else else
${PROJECT_NAME}-unignore -u $SELECTED_USERNAME -e "$BLOCK_EMAIL" ${PROJECT_NAME}-unignore -u $SELECTED_USERNAME -e "$BLOCK_EMAIL"
dialog --title $"Unblock an email" \ dialog --title $"Unblock an email" \
--msgbox "Email from $BLOCK_EMAIL to $SELECTED_USERNAME unblocked" 6 40 --msgbox "Email from $BLOCK_EMAIL to $SELECTED_USERNAME unblocked" 6 75
fi fi
} }

View File

@ -306,11 +306,11 @@ function block_unblock_email {
if [[ $BLOCK == "y"* || $BLOCK == "Y"* ]]; then if [[ $BLOCK == "y"* || $BLOCK == "Y"* ]]; then
${PROJECT_NAME}-ignore -u $USER -e "$BLOCK_EMAIL" ${PROJECT_NAME}-ignore -u $USER -e "$BLOCK_EMAIL"
dialog --title $"Block an email" \ dialog --title $"Block an email" \
--msgbox "Email from $BLOCK_EMAIL is now blocked" 6 40 --msgbox "Email from $BLOCK_EMAIL is now blocked" 6 75
else else
${PROJECT_NAME}-unignore -u $USER -e "$BLOCK_EMAIL" ${PROJECT_NAME}-unignore -u $USER -e "$BLOCK_EMAIL"
dialog --title $"Unblock an email" \ dialog --title $"Unblock an email" \
--msgbox "Email from $BLOCK_EMAIL is now unblocked" 6 40 --msgbox "Email from $BLOCK_EMAIL is now unblocked" 6 75
fi fi
} }