Files 2
Downloads 209,916
Favorites 382
View Bug Report
Typo
Bug #: 1123
File: Show Motifs
Date: 11/05/14 06:34 AM
By: Garkin
Status: Fixed
Forgotten "S" in the image path, fixed:
Lua Code:
  1. [ITEMSTYLE_AREA_AKAVIRI] = {
  2.     texture = [[EsoUI/Art/Crafting/crafting_tooltip_glow_center.dds]],
  3. },


Dwemer motif in both arcane and legendary quality, fixed:
Lua Code:
  1. -- set border for "special" motifs
  2.     if ( SMSettings:GetBorderIcon() ) then
  3.         if ( ( MotifID == ITEMSTYLE_AREA_ANCIENT_ELF ) or ( MotifID == ITEMSTYLE_AREA_REACH ) or ( MotifID == ITEMSTYLE_ENEMY_DAEDRIC ) or ( MotifID == ITEMSTYLE_ENEMY_PRIMITIVE ) ) then
  4.             MotifControl:SetDimensions(SMSettings:GetMotifTextureSize() - 2, SMSettings:GetMotifTextureSize() - 2)
  5.             MotifControlBG:SetColor(GetItemQualityColor(ITEM_QUALITY_ARTIFACT):UnpackRGBA())
  6.             MotifControlBG:SetHidden(false)
  7.         elseif ( ( MotifID == ITEMSTYLE_RACIAL_IMPERIAL ) or ( MotifID == ITEMSTYLE_AREA_DWEMER ) ) then
  8.             MotifControl:SetDimensions(SMSettings:GetMotifTextureSize() - 2, SMSettings:GetMotifTextureSize() - 2)
  9.             MotifControlBG:SetColor(GetItemQualityColor(ITEM_QUALITY_LEGENDARY):UnpackRGBA())
  10.             MotifControlBG:SetHidden(false)

RSS 2.0 Feed for Bug CommentsNotes Sort Options
By: mra4nii - 11/05/14 10:38 AM
thank you, fixed