本帖最后由 RyanBern 于 2016-1-20 12:43 编辑
wdh88666 发表于 2016-1-20 12:20 ![]()
@RyanBern 最后一个问题了!
现在右侧显示图片已经完全调好了!
但如果图片在左侧显示,可能会导致文章显 ...
390行左右,找到这里
else @max_x = self.width - 32 - @face_indent end
else
@max_x = self.width - 32 - @face_indent
end
加上一句
else @face_indent -= 32 if @popchar == -1 && @left_picture != nil # 可以调节32到你想要的数字 @max_x = self.width - 32 - @face_indent end
else
@face_indent -= 32 if @popchar == -1 && @left_picture != nil # 可以调节32到你想要的数字
@max_x = self.width - 32 - @face_indent
end
|