diff --git a/game/modules/tome/dialogs/ShowEquipInven.lua b/game/modules/tome/dialogs/ShowEquipInven.lua
index 9e0e57d68760fa30a1ff7618359c705fffad3e31..d6b4c88f1ea4013dbc3ef72ce7be1431af1bc934 100644
--- a/game/modules/tome/dialogs/ShowEquipInven.lua
+++ b/game/modules/tome/dialogs/ShowEquipInven.lua
@@ -41,6 +41,8 @@ function _M:init(title, equip_actor, filter, action, on_select, inven_actor)
 	self.c_main_set = Tab.new{title="Main Set", default=not equip_actor.off_weapon_slots, fct=function() end, on_change=function(s) if s then self:switchSets("main") end end}
 	self.c_off_set = Tab.new{title="Off Set", default=equip_actor.off_weapon_slots, fct=function() end, on_change=function(s) if s then self:switchSets("off") end end}
 
+	local vsep = Separator.new{dir="horizontal", size=self.ih - 10}
+
 	-- Add tooltips
 	self.on_select = function(item)
 		if item.last_display_x and item.object then
@@ -84,7 +86,7 @@ function _M:init(title, equip_actor, filter, action, on_select, inven_actor)
 		end
 	}
 
-	self.c_inven = Inventory.new{actor=inven_actor, inven=inven_actor:getInven("INVEN"), width=self.iw - 20 - self.c_doll.w, height=self.ih - 10, filter=filter,
+	self.c_inven = Inventory.new{actor=inven_actor, inven=inven_actor:getInven("INVEN"), width=self.iw - vsep.w - self.c_doll.w, height=self.ih - 10, filter=filter,
 		default_last_tabs = "all",
 		fct=function(item, sel, button, event) self:use(item, button, event) end,
 		select=function(item, sel) self:select(item) end,
@@ -101,7 +103,7 @@ function _M:init(title, equip_actor, filter, action, on_select, inven_actor)
 		{left=self.c_main_set, top=0, ui=self.c_off_set},
 		{left=0, top=self.c_main_set, ui=self.c_doll},
 		{right=0, top=0, ui=self.c_inven},
-		{left=self.c_doll.w, top=5, ui=Separator.new{dir="horizontal", size=self.ih - 10}},
+		{left=self.c_doll.w, top=5, ui=vsep},
 	}
 
 	self:triggerHook{"EquipInvenDialog:makeUI", uis=uis}
diff --git a/game/modules/tome/dialogs/ShowEquipment.lua b/game/modules/tome/dialogs/ShowEquipment.lua
index ec8b8d397c85f478261aecffbad50ce0601a737a..e93cbc246013fe8f7a881795254d701d19780fbe 100644
--- a/game/modules/tome/dialogs/ShowEquipment.lua
+++ b/game/modules/tome/dialogs/ShowEquipment.lua
@@ -41,14 +41,15 @@ function _M:init(title, actor, filter, action)
 		on_select=function(ui, inven, item, o) self:select{item=item, object=o} end
 	}
 
-	self.c_desc = TextzoneList.new{width=self.iw - 20 - self.c_doll.w, height=self.ih, no_color_bleed=true}
+	local vsep = Separator.new{dir="horizontal", size=self.ih - 10}
+	self.c_desc = TextzoneList.new{width=self.iw - self.c_doll.w - vsep.w, height=self.ih, no_color_bleed=true}
 
 	self:loadUI{
 		{left=0, top=0, ui=self.c_main_set},
 		{left=self.c_main_set, top=0, ui=self.c_off_set},
 		{left=0, top=self.c_main_set, ui=self.c_doll},
-		{right=0, top=0, ui=self.c_desc},
-		{left=self.c_doll.w, top=5, ui=Separator.new{dir="horizontal", size=self.ih - 10}},
+		{left=self.c_doll, top=5, ui=vsep},
+		{left=vsep, right=0, top=0, ui=self.c_desc},
 	}
 	self:setFocus(self.c_doll)
 	self:setupUI()
diff --git a/game/modules/tome/dialogs/ShowInventory.lua b/game/modules/tome/dialogs/ShowInventory.lua
index 83ed5c301e2e7db58187f182485cc4d916a3c8c5..669adbcbdd11943e47373cb71b78893f177d196f 100644
--- a/game/modules/tome/dialogs/ShowInventory.lua
+++ b/game/modules/tome/dialogs/ShowInventory.lua
@@ -33,9 +33,10 @@ function _M:init(title, inven, filter, action, actor)
 	self.actor = actor
 	Dialog.init(self, title or "Inventory", math.max(800, game.w * 0.8), math.max(600, game.h * 0.8))
 
-	self.c_desc = TextzoneList.new{scrollbar = true, width=math.floor(self.iw / 2 - 10), height=self.ih}
+	local vsep = Separator.new{dir="horizontal", size=self.ih - 10}
+	self.c_desc = TextzoneList.new{scrollbar = true, width=math.floor(self.iw / 2 - vsep.w / 2), height=self.ih}
 
-	self.c_inven = Inventory.new{actor=actor, inven=inven, filter=filter, width=math.floor(self.iw / 2 - 10), height=self.ih - 10,
+	self.c_inven = Inventory.new{actor=actor, inven=inven, filter=filter, width=math.floor(self.iw / 2 - vsep.w / 2), height=self.ih - 10,
 		fct=function(item, sel, button, event) self:use(item, button, event) end,
 		select=function(item, force) self:select(item, force) end,
 		select_tab=function(item) self:select(item) end,
@@ -55,7 +56,7 @@ function _M:init(title, inven, filter, action, actor)
 	self:loadUI{
 		{left=0, top=0, ui=self.c_inven},
 		{right=0, top=0, ui=self.c_desc},
-		{hcenter=0, top=5, ui=Separator.new{dir="horizontal", size=self.ih - 10}},
+		{hcenter=0, top=5, ui=vsep},
 	}
 	self:setFocus(self.c_inven)
 	self:setupUI()