mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-04 05:39:06 +00:00
Fix, Improve Desktop GUI Splash Screen and Main Window
-5e6625aFix file browser to not add empty line when no file/dir selected -8098b8cBring main window to Top when open from System Tray -1c122a8Place window near top so buttons are not hidden by OS bottom bar -dfe2546Set Khoj Icon on Main Desktop Window -1b1f8f9Move Splash screen text below icon. Set the text color to black -450f644Fix path to remove shared libraries when packaging the Windows app
This commit is contained in:
@@ -5,7 +5,7 @@ from os.path import join
|
||||
|
||||
|
||||
def is_none_or_empty(item):
|
||||
return item == None or (hasattr(item, '__iter__') and len(item) == 0)
|
||||
return item == None or (hasattr(item, '__iter__') and len(item) == 0) or item == ''
|
||||
|
||||
|
||||
def to_snake_case_from_dash(item: str):
|
||||
|
||||
Reference in New Issue
Block a user