all repos — fluxbox @ 74df62b0812d33608b88ed74dc89c0d94c818613

custom fork of the fluxbox windowmanager

Remove unused code / option from FbRun
Mathias Gumz akira@fluxbox.org
commit

74df62b0812d33608b88ed74dc89c0d94c818613

parent

3e76d439870f2a0d688fd4e0080b9f9f032146df

2 files changed, 1 insertions(+), 8 deletions(-)

jump to
M doc/asciidoc/fbrun.txtdoc/asciidoc/fbrun.txt

@@ -63,9 +63,6 @@

*-font* 'name':: Text font name -*-na*:: - Disable font antialias - *-hf* 'filename':: History file to load. The default is *~/.fluxbox/fbrun_history*.
M util/fbrun/main.ccutil/fbrun/main.cc

@@ -75,7 +75,6 @@ size_t width = 200, height = 32; // default size of window

bool set_height = false, set_width=false; // use height/width of font by default bool set_pos = false; // set position bool near_mouse = false; // popup near mouse - bool antialias = true; // antialias text bool print = false; string fontname; // font name string title("Run program"); // default title

@@ -114,8 +113,6 @@ } else if (strcmp(argv[i], "-fg") == 0 && i+1 < argc) {

foreground = argv[++i]; } else if (strcmp(argv[i], "-bg") == 0 && i+1 < argc) { background = argv[++i]; - } else if (strcmp(argv[i], "-na") == 0) { - antialias = false; } else if (strcmp(argv[i], "-hf") == 0 && i+1 < argc) { history_file = argv[++i]; } else if (arg == "-h" || arg == "-help" || arg == "--help") {

@@ -154,8 +151,7 @@ if (set_height)

fbrun.resize(fbrun.width(), height); if (set_width) fbrun.resize(width, fbrun.height()); - //if (antialias) - // fbrun.setAntialias(antialias); + // expand and load command history string expanded_filename = FbTk::StringUtil::expandFilename(history_file); if (!fbrun.loadHistory(expanded_filename.c_str()))