Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
jreidinger committed Jan 12, 2015
1 parent b47baa9 commit 272214f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 11 deletions.
5 changes: 0 additions & 5 deletions .rubocop.yml
Expand Up @@ -48,11 +48,6 @@ Style/Documentation:
Style/FileName:
Enabled: false

# Offense count: 1
# Cop supports --auto-correct.
Style/IndentationConsistency:
Enabled: false

# Offense count: 6
# Cop supports --auto-correct.
# Configuration parameters: Width.
Expand Down
12 changes: 6 additions & 6 deletions src/clients/inst_proposal.rb
Expand Up @@ -204,12 +204,12 @@ def main
return :abort if Popup.ConfirmAbort(:incomplete)
end
when :reset_to_defaults
next unless Popup.ContinueCancel(
# question in a popup box
_("Really reset everything to default values?") + "\n" +
# explain consequences of a decision
_("You will lose all changes.")
)
next unless Popup.ContinueCancel(
# question in a popup box
_("Really reset everything to default values?") + "\n" +
# explain consequences of a decision
_("You will lose all changes.")
)
make_proposal(true, false) # force_reset
when :export_config
path = UI.AskForSaveFileName("/", "*.xml", _("Location of Stored Configuration"))
Expand Down

0 comments on commit 272214f

Please sign in to comment.