Implement a character cache, as the database-layer cache is seemingly not working. =/

This commit is contained in:
blitzmann
2015-10-25 19:41:12 -04:00
parent 6496164d95
commit 781abeea53
6 changed files with 25 additions and 23 deletions

View File

@@ -9,6 +9,7 @@ import gui.display as d
from eos.types import Cargo
from eos.db import getItem
import time
import webbrowser
class CrestFittings(wx.Frame):
@@ -292,7 +293,7 @@ class CrestMgmt(wx.Dialog):
def addChar(self, event):
sCrest = service.Crest.getInstance()
uri = sCrest.startServer()
wx.LaunchDefaultBrowser(uri)
webbrowser.open(uri)
def delChar(self, event):
item = self.lcCharacters.GetFirstSelected()