parent
f7016d1af0
commit
74c2bb3385
|
|
@ -1 +1 @@
|
|||
Subproject commit 62fd660583d3ae7a7886930b413c3c570e89786c
|
||||
Subproject commit 5a1ef7e4a6caf3d5f696eb82302e3d87ff5c2303
|
||||
|
|
@ -97,8 +97,7 @@ public:
|
|||
return (flags.native & ~TEX_SPECIAL) == 0;
|
||||
}
|
||||
|
||||
bool texinfo_is_hintskip(const surfflags_t &flags, const std::string &name) const override
|
||||
int32_t surfflags_from_string(const std::string_view &str) const
|
||||
int32_t surfflags_from_string(const std::string_view &str) const override
|
||||
{
|
||||
if (string_iequals(str, "special")) {
|
||||
return TEX_SPECIAL;
|
||||
|
|
@ -107,7 +106,8 @@ public:
|
|||
return 0;
|
||||
}
|
||||
|
||||
bool texinfo_is_hintskip(const surfflags_t &flags, const std::string &name) const override {
|
||||
bool texinfo_is_hintskip(const surfflags_t &flags, const std::string &name) const override
|
||||
{
|
||||
// anything texname other than "hint" in a hint brush is treated as "hintskip", and discarded
|
||||
return !string_iequals(name, "hint");
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue