Skip to content

Commit

Permalink
機能の有効無効判定が一部間違っていたのを修正.
Browse files Browse the repository at this point in the history
  • Loading branch information
sigma-axis committed Mar 4, 2024
1 parent 8d9a4fd commit fd58903
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reactive_dlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ inline constinit struct Settings {
constexpr bool is_tabstops_enabled() const { return tabstops_text >= 0 || tabstops_script >= 0; }
constexpr static int16_t min_tabstops = -1, max_tabstops = 256;

constexpr bool is_enabled() const { return batch && is_tabstops_enabled(); }
constexpr bool is_enabled() const { return batch || is_tabstops_enabled(); }
} textTweaks{ true, -1, -1 };

struct : modkey_set {
Expand Down

0 comments on commit fd58903

Please sign in to comment.